1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-03-20 06:21:09 +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
commit 506522179e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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`.