1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-06-16 22:27:34 +02:00

More precise phrasing of what ? expands to

As per the suggestion from @QuineDot in #65.
This commit is contained in:
Martin Geisler
2022-12-27 18:09:54 +01:00
committed by GitHub
parent c7eff6b85e
commit c15e84f63e

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 {