aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--build.zig2
-rw-r--r--exercises/39_pointers.zig2
2 files changed, 2 insertions, 2 deletions
diff --git a/build.zig b/build.zig
index bb6be4f..c85f978 100644
--- a/build.zig
+++ b/build.zig
@@ -281,7 +281,7 @@ pub fn build(b: *Builder) void {
\\https://ziglang.org/download/
\\
, .{});
- return;
+ std.os.exit(0);
}
use_color_escapes = false;
diff --git a/exercises/39_pointers.zig b/exercises/39_pointers.zig
index 40b145c..d545525 100644
--- a/exercises/39_pointers.zig
+++ b/exercises/39_pointers.zig
@@ -5,7 +5,7 @@
// var bar: *u8 = &foo; // bar is a pointer
//
// What is a pointer? It's a reference to a value. In this example
-// bar is a reference to the memory space that current contains the
+// bar is a reference to the memory space that currently contains the
// value 5.
//
// A cheatsheet given the above declarations: