diff --git a/content/references/translations/en/processing/addassign.json b/content/references/translations/en/processing/addassign.json
index 6284bd18..1b6ec706 100644
--- a/content/references/translations/en/processing/addassign.json
+++ b/content/references/translations/en/processing/addassign.json
@@ -3,20 +3,20 @@
"brief": "Combines addition with assignment",
"description": "Combines addition with assignment. The expression a += b is equivalent to a = a + b. \n",
"related": ["assign", "addition", "subtractassign"],
- "syntax": ["value1 += value2"],
+ "syntax": ["var += value"],
"returns": "",
"type": "function",
"category": "math",
"subcategory": "Operators",
"parameters": [
{
- "name": "value1",
+ "name": "var",
"description": "int or float",
"type": []
},
{
- "name": "value2",
- "description": "any numerical value the same datatype as value1",
+ "name": "value",
+ "description": "any numerical value the same datatype as var",
"type": []
}
]
diff --git a/content/references/translations/en/processing/divideassign.json b/content/references/translations/en/processing/divideassign.json
index 19292c38..8cd7ec94 100644
--- a/content/references/translations/en/processing/divideassign.json
+++ b/content/references/translations/en/processing/divideassign.json
@@ -3,16 +3,16 @@
"brief": "Combines division with assignment",
"description": "Combines division with assignment. The expression a /= b is equivalent to a = a / b. \n",
"related": ["divide", "assign"],
- "syntax": ["value1 /= value2"],
+ "syntax": ["var /= value"],
"returns": "",
"type": "function",
"category": "math",
"subcategory": "Operators",
"parameters": [
- { "name": "value1", "description": "int or float", "type": [] },
+ { "name": "var", "description": "int or float", "type": [] },
{
- "name": "value2",
- "description": "any numerical value the same datatype as value1",
+ "name": "value",
+ "description": "any numerical value the same datatype as var",
"type": []
}
]
diff --git a/content/references/translations/en/processing/multiplyassign.json b/content/references/translations/en/processing/multiplyassign.json
index f3c75950..3bf5df59 100644
--- a/content/references/translations/en/processing/multiplyassign.json
+++ b/content/references/translations/en/processing/multiplyassign.json
@@ -3,16 +3,16 @@
"brief": "Combines multiplication with assignment",
"description": "Combines multiplication with assignment. The expression a *= b is equivalent to a = a * b. \n",
"related": ["multiply", "assign"],
- "syntax": ["value1 *= value2"],
+ "syntax": ["var *= value"],
"returns": "",
"type": "function",
"category": "math",
"subcategory": "Operators",
"parameters": [
- { "name": "value1", "description": "int or float", "type": [] },
+ { "name": "var", "description": "int or float", "type": [] },
{
- "name": "value2",
- "description": "any numerical value the same datatype as value1",
+ "name": "value",
+ "description": "any numerical value the same datatype as var",
"type": []
}
]
diff --git a/content/references/translations/en/processing/subtractassign.json b/content/references/translations/en/processing/subtractassign.json
index bd4654e4..adc8560f 100644
--- a/content/references/translations/en/processing/subtractassign.json
+++ b/content/references/translations/en/processing/subtractassign.json
@@ -3,13 +3,13 @@
"brief": "Combines subtraction with assignment",
"description": "Combines subtraction with assignment. The expression a -= b is equivalent to a = a - b. \n",
"related": ["addassign", "minus"],
- "syntax": ["value1 -= value2"],
+ "syntax": ["var -= value"],
"returns": "",
"type": "function",
"category": "math",
"subcategory": "Operators",
"parameters": [
- { "name": "value1", "description": "int or float", "type": [] },
- { "name": "value2", "description": "int or float", "type": [] }
+ { "name": "var", "description": "int or float", "type": [] },
+ { "name": "value", "description": "any numerical value the same datatype as var", "type": [] }
]
}