Skip to content

Commit 94a7e3b

Browse files
committed
Remove weird extra spaces in code
1 parent 2c9b490 commit 94a7e3b

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)