Skip to content

Commit 37b4c63

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

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
33
"brief": "Combines multiplication with assignment",
44
"description": "Combines multiplication with assignment. The expression <b>a *= b</b> is equivalent to <b>a = a * b</b>. \n",
55
"related": ["multiply", "assign"],
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": [] },
12+
{ "name": "var", "description": "int or float", "type": [] },
1313
{
14-
"name": "value2",
15-
"description": "any numerical value the same datatype as value1",
14+
"name": "value",
15+
"description": "any numerical value the same datatype as var",
1616
"type": []
1717
}
1818
]

0 commit comments

Comments
 (0)