Skip to content

Commit

Permalink
Merge pull request #3874 from rust-lang/chriskrycho/fix-3561
Browse files Browse the repository at this point in the history
Fix a typo: remove an extra 's' from ch. 18.01
  • Loading branch information
chriskrycho authored Apr 1, 2024
2 parents d4fa85a + ee832a0 commit 895b9c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ch08-01-vectors.md
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ some of the columns in the row contain integers, some floating-point numbers,
and some strings. We can define an enum whose variants will hold the different
value types, and all the enum variants will be considered the same type: that
of the enum. Then we can create a vector to hold that enum and so, ultimately,
holds different types. We’ve demonstrated this in Listing 8-9.
hold different types. We’ve demonstrated this in Listing 8-9.

```rust
{{#rustdoc_include ../listings/ch08-common-collections/listing-08-09/src/main.rs:here}}
Expand Down

0 comments on commit 895b9c8

Please sign in to comment.