Skip to content

Commit 374f375

Browse files
committed
Remove empty spaces
1 parent e8d0f13 commit 374f375

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/primitives/array.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ use std::mem;
1616
1717
// This function borrows a slice
1818
fn analyze_slice(slice: &[i32]) {
19-
println!(" first element of the slice: {}", slice[0]);
20-
println!(" the slice has {} elements", slice.len());
19+
println!("first element of the slice: {}", slice[0]);
20+
println!("the slice has {} elements", slice.len());
2121
}
2222
2323
fn main() {

0 commit comments

Comments
 (0)