Skip to content

Commit b632b81

Browse files
authored
Fix semicolon in the wrong place
1 parent 39e24d7 commit b632b81

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ch6/ch6-memscan-3/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ fn main() {
1717
println!("local_int: {:p}", &local_int as *const i32);
1818
println!("boxed_int: {:p}", Box::into_raw(boxed_int));
1919
println!("boxed_str: {:p}", Box::into_raw(boxed_str));
20-
println!("fn_int: {:p}", fn_int);}
20+
println!("fn_int: {:p}", fn_int)};
2121
}

0 commit comments

Comments
 (0)