We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e3dda4 commit 96a5786Copy full SHA for 96a5786
1 file changed
content/references/translations/en/processing/addassign.json
@@ -3,20 +3,20 @@
3
"brief": "Combines addition with assignment",
4
"description": "Combines addition with assignment. The expression <b>a += b</b> is equivalent to <b>a = a + b</b>. \n",
5
"related": ["assign", "addition", "subtractassign"],
6
- "syntax": ["value1 += value2"],
+ "syntax": ["var += value"],
7
"returns": "",
8
"type": "function",
9
"category": "math",
10
"subcategory": "Operators",
11
"parameters": [
12
{
13
- "name": "value1",
+ "name": "var",
14
"description": "int or float",
15
"type": []
16
},
17
18
- "name": "value2",
19
- "description": "any numerical value the same datatype as value1",
+ "name": "value",
+ "description": "any numerical value the same datatype as var",
20
21
}
22
]
0 commit comments