1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-06-26 18:51:00 +02:00

Merge pull request #59 from matm/patch-1

Fixes typo
This commit is contained in:
Matthew Maurer
2022-12-26 08:38:41 -08:00
committed by GitHub

View File

@ -4,7 +4,7 @@ Now that we have seen a fair amount of Rust, we will continue with:
* Structs, enums, methods.
* Pattern matching: destructering enums, structs, and arrays.
* Pattern matching: destructuring enums, structs, and arrays.
* Control flow constructs: `if`, `if let`, `while`, `while let`, `break`, and
`continue`.