aboutsummaryrefslogtreecommitdiff
path: root/exercises/39_pointers.zig
diff options
context:
space:
mode:
authorVishal Sodani <vishalsodani@rediffmail.com>2021-02-16 18:26:43 +0530
committerGitHub <noreply@github.com>2021-02-16 18:26:43 +0530
commitd0400e373329bebca96997cd4d65b73846ba1c59 (patch)
tree161bb1092a9e37dee652c60245821cc07872e05b /exercises/39_pointers.zig
parentf0c50bc8c67fc205aad708be49a78282cf2b00a8 (diff)
downloadziglings-d0400e373329bebca96997cd4d65b73846ba1c59.tar.gz
ziglings-d0400e373329bebca96997cd4d65b73846ba1c59.tar.bz2
ziglings-d0400e373329bebca96997cd4d65b73846ba1c59.tar.xz
ziglings-d0400e373329bebca96997cd4d65b73846ba1c59.zip
Fixed spelling
Diffstat (limited to 'exercises/39_pointers.zig')
-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: