summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorArnon <98772127+arnon4@users.noreply.github.com>2023-05-05 13:11:20 +0300
committerGitHub <noreply@github.com>2023-05-05 13:11:20 +0300
commit25611b831255cd1a84b837c708a7e6398d133869 (patch)
treec5cf39068060c4baf6f616f45dd52c75bc4cc32b
parentf2b3e9340229613c390d469025ebf3fd92520bab (diff)
Fixed example syntax for inline else
-rw-r--r--exercises/092_interfaces.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/092_interfaces.zig b/exercises/092_interfaces.zig
index 5ac5768..8f0a937 100644
--- a/exercises/092_interfaces.zig
+++ b/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