diff options
| author | Chris Boesch <[email protected]> | 2024-05-06 09:13:56 +0200 |
|---|---|---|
| committer | Chris Boesch <[email protected]> | 2024-05-06 09:13:56 +0200 |
| commit | 19bd8745e4c3effb016fb0c12ab9fddef6fe607d (patch) | |
| tree | 0872b21d0df23eb83bdff40372fd88bdd5e40312 /exercises/096_memory_allocation.zig | |
| parent | e182d1f19dd675f826d74abdecb292c11f3a4224 (diff) | |
| download | ziglings-19bd8745e4c3effb016fb0c12ab9fddef6fe607d.tar.xz ziglings-19bd8745e4c3effb016fb0c12ab9fddef6fe607d.zip | |
Fix some typos
Diffstat (limited to 'exercises/096_memory_allocation.zig')
| -rw-r--r-- | exercises/096_memory_allocation.zig | 6 |
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 |
