We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a6342f commit e8ddad1Copy full SHA for e8ddad1
src/doc/guide.md
@@ -1140,13 +1140,13 @@ You can have any number of values in an enum:
1140
```{rust}
1141
enum OptionalColor {
1142
Color(int, int, int),
1143
- Missing
+ Missing,
1144
}
1145
```
1146
1147
Enums with values are quite useful, but as I mentioned, they're even more
1148
useful when they're generic across types. But before we get to generics, let's
1149
-talk about how to fix this big `if`/`else` statements we've been writing. We'll
+talk about how to fix these big `if`/`else` statements we've been writing. We'll
1150
do that with `match`.
1151
1152
# Match
0 commit comments