diff options
author | Dave Gauer <ratfactor@gmail.com> | 2021-02-16 18:25:30 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-16 18:25:30 -0500 |
commit | 377023e1833ffb18e2b54790a5cc99dde85f84d2 (patch) | |
tree | 01a905fc65a80a5dcfa2e6c1a7b1577fbce9bc9a | |
parent | 7b337cb51abda134ea86f61589e7c6fcafb71a30 (diff) | |
parent | d0400e373329bebca96997cd4d65b73846ba1c59 (diff) | |
download | ziglings-377023e1833ffb18e2b54790a5cc99dde85f84d2.tar.gz ziglings-377023e1833ffb18e2b54790a5cc99dde85f84d2.tar.bz2 ziglings-377023e1833ffb18e2b54790a5cc99dde85f84d2.tar.xz ziglings-377023e1833ffb18e2b54790a5cc99dde85f84d2.zip |
Merge pull request #23 from vishalsodani/main
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: |