Roman Frołow 4 лет назад
Родитель
Сommit
4bdf39bfe5
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      exercises/049_quiz6.zig

+ 1 - 1
exercises/049_quiz6.zig

@@ -17,7 +17,7 @@ const Elephant = struct {
 
     // Elephant tail methods!
     pub fn getTail(self: *Elephant) *Elephant {
-        return self.tail.?; // Remember, this is means "orelse unreachable"
+        return self.tail.?; // Remember, this means "orelse unreachable"
     }
 
     pub fn hasTail(self: *Elephant) bool {