Skip to content

Commit b18066f

Browse files
authored
Update subtractassign.json
Signed-off-by: Arya Gupta <arya.gupta99999@gmail.com>
1 parent 96c4d2d commit b18066f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

content/references/translations/en/processing/subtractassign.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
"brief": "Combines subtraction with assignment",
44
"description": "Combines subtraction with assignment. The expression <b>a -= b</b> is equivalent to <b>a = a - b</b>. \n",
55
"related": ["addassign", "minus"],
6-
"syntax": ["value1 -= value2"],
6+
"syntax": ["var -= value"],
77
"returns": "",
88
"type": "function",
99
"category": "math",
1010
"subcategory": "Operators",
1111
"parameters": [
12-
{ "name": "value1", "description": "int or float", "type": [] },
13-
{ "name": "value2", "description": "int or float", "type": [] }
12+
{ "name": "var", "description": "int or float", "type": [] },
13+
{ "name": "value", "description": "any numerical value the same datatype as var", "type": [] }
1414
]
1515
}

0 commit comments

Comments
 (0)