Dave Gauer 4 лет назад
Родитель
Сommit
15827c1df3
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      exercises/052_slices.zig

+ 1 - 1
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");