Просмотр исходного кода

Merge pull request #71 from franciscod/patch-1

fix typo in 076 (sentinal -> sentinel)
Dave Gauer 4 лет назад
Родитель
Сommit
424f3e95f9
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      exercises/076_sentinels.zig

+ 1 - 1
exercises/076_sentinels.zig

@@ -53,7 +53,7 @@ pub fn main() void {
 
     // So now we have a zero-terminated array and a many-item
     // pointer that reference the same data: a sequence of
-    // numbers that both ends in and CONTAINS the sentinal value.
+    // numbers that both ends in and CONTAINS the sentinel value.
     //
     // Attempting to loop through and print both of these should
     // demonstrate how they are similar and different.