Skip to content

Commit 19dab78

Browse files
authored
doc: add missing space
1 parent 46435cd commit 19dab78

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/subtyping.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ let subtype: &(dyn for<'a> Fn(&'a i32) -> &'a i32) = &|x| x;
3939
let supertype: &(dyn Fn(&'static i32) -> &'static i32) = subtype;
4040

4141
// We can also substitute one higher-ranked lifetime for another
42-
let subtype: &(for<'a, 'b> fn(&'a i32, &'b i32))= &((|x, y| {}) as fn(&_, &_));
42+
let subtype: &(for<'a, 'b> fn(&'a i32, &'b i32)) = &((|x, y| {}) as fn(&_, &_));
4343
let supertype: &for<'c> fn(&'c i32, &'c i32) = subtype;
4444
```
4545

0 commit comments

Comments
 (0)