diff options
author | Vishal Sodani <vishalsodani@rediffmail.com> | 2021-02-16 18:26:43 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-16 18:26:43 +0530 |
commit | d0400e373329bebca96997cd4d65b73846ba1c59 (patch) | |
tree | 161bb1092a9e37dee652c60245821cc07872e05b | |
parent | f0c50bc8c67fc205aad708be49a78282cf2b00a8 (diff) | |
download | ziglings-d0400e373329bebca96997cd4d65b73846ba1c59.tar.gz ziglings-d0400e373329bebca96997cd4d65b73846ba1c59.tar.bz2 ziglings-d0400e373329bebca96997cd4d65b73846ba1c59.tar.xz ziglings-d0400e373329bebca96997cd4d65b73846ba1c59.zip |
Fixed spelling
-rw-r--r-- | exercises/39_pointers.zig | 2 |
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: |