aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorChris Boesch <chrboesch@noreply.codeberg.org>2023-07-03 18:59:54 +0200
committerGitHub <noreply@github.com>2023-07-03 18:59:54 +0200
commit477f18ebfcaed96f847f43c8ef797da003428307 (patch)
tree4d19765fac0a7eb53365a8606ba01450fd8a843c
parente142d40fb0c0371ee626c43e5616f9c90e806391 (diff)
parentdb653d29ee7244238c073a84ff7ee3152cb7fc04 (diff)
Merge pull request #337 from kimshrier/exercise_096_typo
fix typo
-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.