From 19bd8745e4c3effb016fb0c12ab9fddef6fe607d Mon Sep 17 00:00:00 2001 From: Chris Boesch Date: Mon, 6 May 2024 09:13:56 +0200 Subject: Fix some typos --- exercises/096_memory_allocation.zig | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'exercises/096_memory_allocation.zig') 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 -- cgit v1.2.3