commit d72fb2abadda831e5877549eb9f5ae36c355d05f (tree) parent 6cd725c24b5744d67c36ccb3be9ef9e2fd69c74d Author: Andrew Kelley <superjoe30@gmail.com> Date: Mon, 24 Apr 2017 16:17:28 -0400 update README Diffstat:
| M | README.md | | | 2 | +- |
| M | std/debug.zig | | | 2 | +- |
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/README.md b/README.md @@ -157,4 +157,4 @@ To fix this, you have 2 options: ### Related Projects * [zig-mode](https://github.com/AndreaOrru/zig-mode) - Emacs integration - * [zig.vim](https://github.com/andrewrk/zig.vim) - Vim configuration files + * [zig.vim](https://github.com/zig-lang/zig.vim) - Vim configuration files diff --git a/std/debug.zig b/std/debug.zig @@ -10,7 +10,7 @@ error InvalidDebugInfo; error UnsupportedDebugInfo; pub fn assert(ok: bool) { - if (!ok) unreachable + if (!ok) unreachable // assertion failure } var panicking = false;