Skip to content

Commit 4dd1038

Browse files
committed
remove trailing whitespace
1 parent 535c98d commit 4dd1038

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

posts/2020-07-16-Rust-1.45.0.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,9 @@ fn cast(x: f32) -> u8 {
7878

7979
fn main() {
8080
let f = 300.0;
81-
81+
8282
let x = cast(f);
83-
83+
8484
println!("x: {}", x);
8585
}
8686
```
@@ -117,7 +117,7 @@ fn main() {
117117
let too_big = 300.0;
118118
let too_small = -100.0;
119119
let nan = f32::NAN;
120-
120+
121121
println!("too_big_casted = {}", cast(too_big));
122122
println!("too_small_casted = {}", cast(too_small));
123123
println!("not_a_number_casted = {}", cast(nan));

0 commit comments

Comments
 (0)