aboutsummaryrefslogtreecommitdiff
path: root/exercises/39_pointers.zig
diff options
context:
space:
mode:
authorVishal Sodani <[email protected]>2021-02-16 18:26:43 +0530
committerGitHub <[email protected]>2021-02-16 18:26:43 +0530
commitea8084187b6f59f99025c7f10556c3073c3093d4 (patch)
tree161bb1092a9e37dee652c60245821cc07872e05b /exercises/39_pointers.zig
parent9b54ba79a0f1b39b69e14045e5b1463e3507c2fb (diff)
downloadziglings-ea8084187b6f59f99025c7f10556c3073c3093d4.tar.xz
ziglings-ea8084187b6f59f99025c7f10556c3073c3093d4.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: