Merge pull request #280 from arnon4/patch-1

Fixed example syntax for inline else
This commit is contained in:
Chris Boesch 2023-05-05 16:03:05 +02:00 committed by GitHub
commit 58d9512c80
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -40,7 +40,7 @@
// //
// switch (thing) { // switch (thing) {
// .a => |a| special(a), // .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 // We can have special handling of some cases and then Zig