update README

This commit is contained in:
Andrew Kelley 2017-04-24 16:17:28 -04:00
parent 6cd725c24b
commit d72fb2abad
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -10,7 +10,7 @@ error InvalidDebugInfo;
error UnsupportedDebugInfo;
pub fn assert(ok: bool) {
if (!ok) unreachable
if (!ok) unreachable // assertion failure
}
var panicking = false;