Browse Source

Merge pull request #23 from vishalsodani/main

Fixed spelling
Dave Gauer 4 years ago
parent
commit
9dc8b3d931
1 changed files with 1 additions and 1 deletions
  1. 1 1
      exercises/39_pointers.zig

+ 1 - 1
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: