1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-01-09 09:11:50 +02:00

Merge pull request #74 from google/try-operator

More precise phrasing of what ? expands to
This commit is contained in:
Martin Geisler 2022-12-28 09:26:18 +01:00 committed by GitHub
commit dcf29d4653
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,12 +1,12 @@
# Converting Error Types
The actual expansion of `?` is a little more complicated than previously indicated:
The effective expansion of `?` is a little more complicated than previously indicated:
```rust,ignore
expression?
```
actually becomes
works the same as
```rust,ignore
match expression {