Minor type fix (#1337)

This commit is contained in:
Eric Holk 2022-04-14 03:44:36 -07:00 committed by GitHub
parent 8b363fba6d
commit 8c4e15a49a
1 changed files with 1 additions and 1 deletions

View File

@ -122,7 +122,7 @@ Now let's extend `bar` a bit by adding one more variable, `y`:
```rust,ignore
fn bar<'a, T>(t: &'a T) {
let x: for<'b> fn(&'b u32) = ...;
let y: for<'c> fn(&'b u32) = ...;
let y: for<'c> fn(&'c u32) = ...;
}
```