Skip to content

Commit 271f472

Browse files
authored
Merge pull request #1962 from tyilo/fix-formatting
Remove weird extra spaces in code
2 parents 1514bf0 + 94a7e3b commit 271f472

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/scope/lifetime/static_lifetime.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,8 @@ does not:
100100
```rust,editable,compile_fail
101101
use std::fmt::Debug;
102102
103-
fn print_it( input: impl Debug + 'static ) {
104-
println!( "'static value passed in is: {:?}", input );
103+
fn print_it(input: impl Debug + 'static) {
104+
println!("'static value passed in is: {:?}", input);
105105
}
106106
107107
fn main() {

0 commit comments

Comments
 (0)