Browse Source

Merge pull request #280 from arnon4/patch-1

Fixed example syntax for inline else
Chris Boesch 2 years ago
parent
commit
e273dd298e
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