Merge pull request #411 from kewinzaq1/patch-1

fix: typo
This commit is contained in:
Sunface
2023-07-02 09:36:16 +08:00
committed by GitHub

View File

@ -324,7 +324,7 @@ For a more comprehensive understanding of elision, please see [lifetime elision]
```rust,editable ```rust,editable
/* Remove all the lifetimes that can be elided */ /* Remove all the lifetimes that can be elided */
fn nput<'a>(x: &'a i32) { fn input<'a>(x: &'a i32) {
println!("`annotated_input`: {}", x); println!("`annotated_input`: {}", x);
} }