summaryrefslogtreecommitdiff
path: root/exercises/039_pointers.zig
diff options
context:
space:
mode:
authorPaul Ebose <pebose@proton.me>2026-02-27 03:38:59 +0100
committerPaul Ebose <pebose@proton.me>2026-02-27 03:38:59 +0100
commit4aeb7b83b9534042e42c27839db40f2a288feabb (patch)
tree697c9e162ecfd9aa777dc10a2f7499e72ca30252 /exercises/039_pointers.zig
parent3ecaa34271da0c0c41926ff604f9419e0b492bb3 (diff)
add commas
Diffstat (limited to 'exercises/039_pointers.zig')
-rw-r--r--exercises/039_pointers.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/039_pointers.zig b/exercises/039_pointers.zig
index 24ca46d..792fcc7 100644
--- a/exercises/039_pointers.zig
+++ b/exercises/039_pointers.zig
@@ -4,7 +4,7 @@
// var foo: u8 = 5; // foo is 5
// var bar: *u8 = &foo; // bar is a pointer
//
-// What is a pointer? It's a reference to a value. In this example
+// What is a pointer? It's a reference to a value. In this example,
// bar is a reference to the memory space that currently contains the
// value 5.
//