From db653d29ee7244238c073a84ff7ee3152cb7fc04 Mon Sep 17 00:00:00 2001 From: Kim SHrier Date: Mon, 3 Jul 2023 02:06:40 -0600 Subject: [PATCH] fix typo --- exercises/096_memory_allocation.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.