Skip to content

Commit 96a5786

Browse files
authored
Update addassign.json
Signed-off-by: Arya Gupta <arya.gupta99999@gmail.com>
1 parent 6e3dda4 commit 96a5786

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

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

0 commit comments

Comments
 (0)