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

Merge pull request #289 from kimshrier/exercise_092_typo

Remove repeated word "with"
Chris Boesch 2 лет назад
Родитель
Сommit
f917f50be0
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      exercises/092_interfaces.zig

+ 1 - 1
exercises/092_interfaces.zig

@@ -86,7 +86,7 @@ const Insect = union(enum) {
 
     // Thanks to 'inline else', we can think of this print() as
     // being an interface method. Any member of this union with
-    // with a print() method can be treated uniformly by outside
+    // a print() method can be treated uniformly by outside
     // code without needing to know any other details. Cool!
     pub fn print(self: Insect) void {
         switch (self) {