summaryrefslogtreecommitdiffstatshomepage
path: root/exercises/096_memory_allocation.zig
diff options
context:
space:
mode:
authorKim SHrier <gitkim@westryn.net>2023-07-03 02:06:40 -0600
committerKim SHrier <gitkim@westryn.net>2023-07-03 02:06:40 -0600
commitdb653d29ee7244238c073a84ff7ee3152cb7fc04 (patch)
tree4d19765fac0a7eb53365a8606ba01450fd8a843c /exercises/096_memory_allocation.zig
parente142d40fb0c0371ee626c43e5616f9c90e806391 (diff)
fix typo
Diffstat (limited to 'exercises/096_memory_allocation.zig')
-rw-r--r--exercises/096_memory_allocation.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/096_memory_allocation.zig b/exercises/096_memory_allocation.zig
index c8d7bf6..6e818b5 100644
--- a/exercises/096_memory_allocation.zig
+++ b/exercises/096_memory_allocation.zig
@@ -30,7 +30,7 @@
// std.debug.print("slice_ptr={*}\n", .{slice_ptr});
// }
-// Instead of an simple integer or a constant sized slice, this
+// Instead of a simple integer or a constant sized slice, this
// program requires a slice to be allocated that is the same size as
// an input array.