diff --git a/content/references/translations/en/processing/float.json b/content/references/translations/en/processing/float.json
index 843768e7..a454fc8a 100644
--- a/content/references/translations/en/processing/float.json
+++ b/content/references/translations/en/processing/float.json
@@ -1,6 +1,6 @@
{
"name": "float",
- "brief": "Data type for floating-point numbers, e",
+ "brief": "Data type for floating-point numbers, e.g. numbers that have a decimal point",
"description": "Data type for floating-point numbers, e.g. numbers that have a decimal point.
\n
\nFloats are not precise, so adding small values (such as 0.0001) may not always increment precisely due to rounding errors. If you want to increment a value in small intervals, use an int, and divide by a float value before using it. (See the second example above.)
\n
\nFloating-point numbers can be as large as 3.40282347E+38 and as low as -3.40282347E+38. They are stored as 32 bits (4 bytes) of information. The float data type is inherited from Java; you can read more about the technical details here and here.
\n
\nProcessing supports the double datatype from Java as well. However, none of the Processing functions use double values, which use more memory and are typically overkill for most work created in Processing. We do not plan to add support for double values, as doing so would require increasing the number of API functions significantly.\n",
"related": ["int", "double"],
"syntax": ["float var", "float var = value"],
diff --git a/content/references/translations/en/processing/millis_.json b/content/references/translations/en/processing/millis_.json
index cbc8ab35..c2866e01 100644
--- a/content/references/translations/en/processing/millis_.json
+++ b/content/references/translations/en/processing/millis_.json
@@ -1,5 +1,5 @@
{
- "brief": "Returns the number of milliseconds (thousandths of a second) since\n the sketch started.",
+ "brief": "Returns the number of milliseconds (thousandths of a second) since\n the sketch started",
"related": ["second_", "minute_", "hour_", "day_", "month_", "year_"],
"name": "millis()",
"description": "Returns the number of milliseconds (thousandths of a second) since\n starting the sketch. This information is often used for timing animation\n sequences.\n\n ",
diff --git a/content/references/translations/en/processing/printArray_.json b/content/references/translations/en/processing/printArray_.json
index 45916ea1..c82064c9 100644
--- a/content/references/translations/en/processing/printArray_.json
+++ b/content/references/translations/en/processing/printArray_.json
@@ -1,5 +1,5 @@
{
- "brief": "Writes array data to the text\n area of the Processing environment's console.",
+ "brief": "Writes array data to the text\n area of the Processing environment's console",
"related": ["print_", "println_"],
"name": "printArray()",
"description": "The printArray() function writes array data to the text\n area of the Processing environment's console. A new line\n is put between each element of the array. This function\n can only print one dimensional arrays.\n Note that the console is relatively slow. It works well\n for occasional messages, but does not support high-speed,\n real-time output (such as at 60 frames per second).",