Skip to content

Commit 3ffcf60

Browse files
authored
Remove accidental leading empty line in code block
1 parent 684424a commit 3ffcf60

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/early_late_parameters.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ If the lifetime parameter on `foo` was late bound this would be able to compile
128128
```rust
129129
# fn foo<'a: 'a>(b: &'a String) -> &'a String { b }
130130
# fn bar<'a>(b: &'a String) -> &'a String { b }
131-
131+
#
132132
// Early bound parameters are instantiated here, however as `'a` is
133133
// late bound it is not provided here.
134134
let b = bar;

0 commit comments

Comments
 (0)