1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2024-12-26 19:23:22 +02:00

Fixes typo

This commit is contained in:
Mathias M 2022-12-26 09:12:00 +01:00 committed by GitHub
parent d9f1709036
commit fe3651df02
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`.