Skip to content

Commit 3f26575

Browse files
authored
Minor type fix (rust-lang#1337)
1 parent 0fb43fd commit 3f26575

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/doc/rustc-dev-guide/src/borrow_check/region_inference/placeholders_and_universes.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ Now let's extend `bar` a bit by adding one more variable, `y`:
122122
```rust,ignore
123123
fn bar<'a, T>(t: &'a T) {
124124
let x: for<'b> fn(&'b u32) = ...;
125-
let y: for<'c> fn(&'b u32) = ...;
125+
let y: for<'c> fn(&'c u32) = ...;
126126
}
127127
```
128128

0 commit comments

Comments
 (0)