fix: typo

This commit is contained in:
Kewin Szlezingier
2023-06-18 18:06:29 +02:00
committed by GitHub
parent 588cd2d77c
commit 5a899e2329

View File

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