From 96a5786f59eed54a1e54e2ebd861884cf0f8f064 Mon Sep 17 00:00:00 2001 From: Arya Gupta Date: Tue, 24 Jan 2023 21:51:03 +0530 Subject: [PATCH 1/4] Update addassign.json Signed-off-by: Arya Gupta --- .../references/translations/en/processing/addassign.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/content/references/translations/en/processing/addassign.json b/content/references/translations/en/processing/addassign.json index 6284bd186..1b6ec7062 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": [] } ] From 96c4d2d069733fd0815fecdd81bc53caa4d24f9a Mon Sep 17 00:00:00 2001 From: Arya Gupta Date: Tue, 24 Jan 2023 21:56:28 +0530 Subject: [PATCH 2/4] Update divideassign.json Signed-off-by: Arya Gupta --- .../translations/en/processing/divideassign.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/content/references/translations/en/processing/divideassign.json b/content/references/translations/en/processing/divideassign.json index 19292c38f..8cd7ec945 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": [] } ] From b18066fe23b2c5d795649efc56627e04473f1d03 Mon Sep 17 00:00:00 2001 From: Arya Gupta Date: Tue, 24 Jan 2023 21:58:00 +0530 Subject: [PATCH 3/4] Update subtractassign.json Signed-off-by: Arya Gupta --- .../translations/en/processing/subtractassign.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/content/references/translations/en/processing/subtractassign.json b/content/references/translations/en/processing/subtractassign.json index bd4654e44..adc8560f4 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": [] } ] } From 37b4c63943aa3f4dce3b204f140eeec5599d4029 Mon Sep 17 00:00:00 2001 From: Arya Gupta Date: Tue, 24 Jan 2023 22:04:34 +0530 Subject: [PATCH 4/4] Update multiplyassign.json Signed-off-by: Arya Gupta --- .../translations/en/processing/multiplyassign.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/content/references/translations/en/processing/multiplyassign.json b/content/references/translations/en/processing/multiplyassign.json index f3c759509..3bf5df59f 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": [] } ]