Skip to content

Commit c973f37

Browse files
Merge pull request #1891 from Plotnus/patch-2
Adding trailing comma
2 parents 489fd11 + 5c57d8e commit c973f37

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ch18-03-pattern-syntax.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ colors in the `ChangeColor` message, as shown in Listing 18-16.
335335
```rust
336336
enum Color {
337337
Rgb(i32, i32, i32),
338-
Hsv(i32, i32, i32)
338+
Hsv(i32, i32, i32),
339339
}
340340

341341
enum Message {

0 commit comments

Comments
 (0)