mirror of https://github.com/rust-lang/rfcs.git
Fix typo in declaration of `do_something`
This commit is contained in:
parent
85793a6259
commit
77c090bc42
|
@ -102,7 +102,7 @@ fn approx_context<'long,'short>(t: &Context<'long>, data: &'short Data)
|
|||
do_something(u, data)
|
||||
}
|
||||
|
||||
fn do_something<'x>(t: Context<'x>, data: &'x Data) {
|
||||
fn do_something<'x>(t: &Context<'x>, data: &'x Data) {
|
||||
...
|
||||
}
|
||||
```
|
||||
|
|
Loading…
Reference in New Issue