aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/exercises
diff options
context:
space:
mode:
authorDave Gauer <ratfactor@gmail.com>2021-02-16 18:25:30 -0500
committerGitHub <noreply@github.com>2021-02-16 18:25:30 -0500
commit9dc8b3d931b3dbaa7b12260761dd2623b1a1fb38 (patch)
tree01a905fc65a80a5dcfa2e6c1a7b1577fbce9bc9a /exercises
parentbbbda4bd0a3c2f80b9eaf01c8d5580999ebc036d (diff)
parentea8084187b6f59f99025c7f10556c3073c3093d4 (diff)
Merge pull request #23 from vishalsodani/main
Fixed spelling
Diffstat (limited to 'exercises')
-rw-r--r--exercises/39_pointers.zig2
1 files changed, 1 insertions, 1 deletions
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: