Remove accidental leading empty line in code block

This commit is contained in:
León Orell Valerian Liehr 2025-01-26 02:42:09 +01:00 committed by GitHub
parent 684424aeef
commit 3ffcf606a9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

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