Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions content/references/translations/en/processing/addassign.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,20 @@
"brief": "Combines addition with assignment",
"description": "Combines addition with assignment. The expression <b>a += b</b> is equivalent to <b>a = a + b</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": []
}
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@
"brief": "Combines division with assignment",
"description": "Combines division with assignment. The expression <b>a /= b</b> is equivalent to <b>a = a / b</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": []
}
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@
"brief": "Combines multiplication with assignment",
"description": "Combines multiplication with assignment. The expression <b>a *= b</b> is equivalent to <b>a = a * b</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": []
}
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
"brief": "Combines subtraction with assignment",
"description": "Combines subtraction with assignment. The expression <b>a -= b</b> is equivalent to <b>a = a - b</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": [] }
]
}