Skip to content

Updated documentation for compound assignment operators to improve consistency #418

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Jan 24, 2023
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Update divideassign.json
Signed-off-by: Arya Gupta <[email protected]>
  • Loading branch information
Arya-Gupta authored Jan 24, 2023
commit 96c4d2d069733fd0815fecdd81bc53caa4d24f9a
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