We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b6c4b0 commit 41cf009Copy full SHA for 41cf009
src/expressions/match-expr.md
@@ -66,7 +66,7 @@ Multiple match patterns may be joined with the `|` operator. Each pattern will b
66
tested in left-to-right sequence until a successful match is found.
67
68
```rust
69
-# let x = 9;
+let x = 9;
70
let message = match x {
71
0 | 1 => "not many",
72
2 ..= 9 => "a few",
0 commit comments