aboutsummaryrefslogtreecommitdiff
path: root/exercises/096_memory_allocation.zig
diff options
context:
space:
mode:
authorChris Boesch <[email protected]>2024-05-06 09:13:56 +0200
committerChris Boesch <[email protected]>2024-05-06 09:13:56 +0200
commit19bd8745e4c3effb016fb0c12ab9fddef6fe607d (patch)
tree0872b21d0df23eb83bdff40372fd88bdd5e40312 /exercises/096_memory_allocation.zig
parente182d1f19dd675f826d74abdecb292c11f3a4224 (diff)
downloadziglings-19bd8745e4c3effb016fb0c12ab9fddef6fe607d.tar.xz
ziglings-19bd8745e4c3effb016fb0c12ab9fddef6fe607d.zip
Fix some typos
Diffstat (limited to 'exercises/096_memory_allocation.zig')
-rw-r--r--exercises/096_memory_allocation.zig6
1 files changed, 3 insertions, 3 deletions
diff --git a/exercises/096_memory_allocation.zig b/exercises/096_memory_allocation.zig
index 1ece922..58de7b0 100644
--- a/exercises/096_memory_allocation.zig
+++ b/exercises/096_memory_allocation.zig
@@ -30,9 +30,9 @@
// std.debug.print("slice_ptr={*}\n", .{slice_ptr});
// }
-// 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.
+// Instead of a simple integer or a slice with a constant size,
+// this program requires allocating a slice that is the same size
+// as an input array.
// Given a series of numbers, take the running average. In other
// words, each item N should contain the average of the last N