aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorAndrew Kelley <superjoe30@gmail.com>2017-03-26 15:06:43 -0400
committerAndrew Kelley <superjoe30@gmail.com>2017-03-26 15:06:43 -0400
commit8aeea72654b2efbd068abe207b42170c4d27ee03 (patch)
tree34d01fb3e41a7952c00e00088f10e5159d70c976 /doc
parent6ee63c8f58357a2b97b6039beca90437ba8bf68c (diff)
downloadzig-8aeea72654b2efbd068abe207b42170c4d27ee03.tar.gz
zig-8aeea72654b2efbd068abe207b42170c4d27ee03.zip
add debug safety checks for remainder division
See #217
Diffstat (limited to 'doc')
-rw-r--r--doc/langref.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/langref.md b/doc/langref.md
index a70503a137..73b456701e 100644
--- a/doc/langref.md
+++ b/doc/langref.md
@@ -165,17 +165,17 @@ ContainerDecl = option("extern" | "packed") ("struct" | "enum" | "union") "{" ma
```
x() x[] x.y
-!x -x ~x *x &x ?x %x %%x
+!x -x -%x ~x *x &x ?x %x %%x ??x
x{}
-* / %
-+ - ++
+* / % ** *%
++ - ++ +% -%
<< >>
&
^
|
== != < > <= >=
-&&
-||
+and
+or
?? %%
= *= /= %= += -= <<= >>= &= ^= |=
```