Fix a typo: remove an extra 's' from ch. 18.01

Fixes #3561
This commit is contained in:
Chris Krycho 2024-04-01 14:24:46 -06:00
parent d4fa85a562
commit ee832a0849
1 changed files with 1 additions and 1 deletions

View File

@ -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. Weve demonstrated this in Listing 8-9.
hold different types. Weve demonstrated this in Listing 8-9.
```rust
{{#rustdoc_include ../listings/ch08-common-collections/listing-08-09/src/main.rs:here}}