From 15827c1df3448824496ca7c03ad9613b46505dcf Mon Sep 17 00:00:00 2001 From: Dave Gauer Date: Mon, 30 Aug 2021 17:55:32 -0400 Subject: [PATCH] Update 052_slices.zig --- exercises/052_slices.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/052_slices.zig b/exercises/052_slices.zig index 3ee5383..af5930b 100644 --- a/exercises/052_slices.zig +++ b/exercises/052_slices.zig @@ -24,7 +24,7 @@ // first item at x and the last item at y-1. You can leave the y // off to get "the rest of the items". // -// Notice that the type of a slice on an array of u8 items is []u8. +// The type of a slice on an array of u8 items is []u8. // const std = @import("std");