Browse Source

Fixed example syntax for inline else

Arnon 2 years ago
parent
commit
25611b8312
1 changed files with 1 additions and 1 deletions
  1. 1 1
      exercises/092_interfaces.zig

+ 1 - 1
exercises/092_interfaces.zig

@@ -40,7 +40,7 @@
 //
 //   switch (thing) {
 //       .a => |a| special(a),
-//       inline else |t| => normal(t),
+//       inline else => |t| normal(t),
 //   }
 //
 // We can have special handling of some cases and then Zig