| author | |
| committer | |
| log | d72fb2abadda831e5877549eb9f5ae36c355d05f |
| tree | 545402435975797bd0f455c3653146e1fce1ff68 |
| parent | 6cd725c24b5744d67c36ccb3be9ef9e2fd69c74d |
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 Projects | 157 | ### Related Projects |
| 158 | 158 | ||
| 159 | * [zig-mode](https://github.com/AndreaOrru/zig-mode) - Emacs integration | 159 | * [zig-mode](https://github.com/AndreaOrru/zig-mode) - Emacs integration |
| 160 | * [zig.vim](https://github.com/andrewrk/zig.vim) - Vim configuration files | 160 | * [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; |
| 10 | error UnsupportedDebugInfo; | 10 | error UnsupportedDebugInfo; |
| 11 | 11 | ||
| 12 | pub fn assert(ok: bool) { | 12 | pub fn assert(ok: bool) { |
| 13 | if (!ok) unreachable | 13 | if (!ok) unreachable // assertion failure |
| 14 | } | 14 | } |
| 15 | 15 | ||
| 16 | var panicking = false; | 16 | var panicking = false; |