1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2024-11-28 10:03:09 +02:00

List expressions which are actually explained on this page (#2115)

`match` expressions were explained on an earlier page.
This commit is contained in:
Andrew Walbran 2024-06-03 15:54:16 +01:00 committed by GitHub
parent d09041fb91
commit 5f4ff0ab09
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -8,8 +8,8 @@ Rust has a few control flow constructs which differ from other languages. They
are used for pattern matching:
- `if let` expressions
- `let else` expressions
- `while let` expressions
- `match` expressions
# `if let` expressions