Skip to content

Commit f2ea90e

Browse files
committed
Update
1 parent 4249394 commit f2ea90e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -198,8 +198,8 @@ delete[] p // Destroy and free array of objects at p
198198
199199
x * y // Multiply
200200
x / y // Divide (integers round toward 0)
201-
x \% y // Modulo (result has sign of x)
202-
\\
201+
x % y // Modulo (result has sign of x)
202+
203203
x + y // Add, or \&x[y]
204204
x - y // Subtract, or number of elements from *x to *y
205205
x << y // x shifted y bits to left (x * pow(2, y))

0 commit comments

Comments
 (0)