authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2017-04-24 16:17:28-04:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2017-04-24 16:17:28-04:00
logd72fb2abadda831e5877549eb9f5ae36c355d05f
tree545402435975797bd0f455c3653146e1fce1ff68
parent6cd725c24b5744d67c36ccb3be9ef9e2fd69c74d

update README


2 files changed, 2 insertions(+), 2 deletions(-)

README.md+1-1
...@@ -157,4 +157,4 @@ To fix this, you have 2 options:...@@ -157,4 +157,4 @@ To fix this, you have 2 options:
157### Related Projects157### Related Projects
158158
159 * [zig-mode](https://github.com/AndreaOrru/zig-mode) - Emacs integration159 * [zig-mode](https://github.com/AndreaOrru/zig-mode) - Emacs integration
160 * [zig.vim](https://github.com/andrewrk/zig.vim) - Vim configuration files160 * [zig.vim](https://github.com/zig-lang/zig.vim) - Vim configuration files
std/debug.zig+1-1
...@@ -10,7 +10,7 @@ error InvalidDebugInfo;...@@ -10,7 +10,7 @@ error InvalidDebugInfo;
10error UnsupportedDebugInfo;10error UnsupportedDebugInfo;
1111
12pub fn assert(ok: bool) {12pub fn assert(ok: bool) {
13 if (!ok) unreachable13 if (!ok) unreachable // assertion failure
14}14}
1515
16var panicking = false;16var panicking = false;