Skip to content

Commit b01ad06

Browse files
authored
Merge pull request #211 from ksera524/master-ja
不要な;の削除
2 parents 280f6b4 + 42fd3ec commit b01ad06

File tree

1 file changed

+1
-1
lines changed
  • listings/ch03-common-programming-concepts/no-listing-01-variables-are-immutable/src

1 file changed

+1
-1
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
fn main() {
22
let x = 5;
3-
println!("The value of x is: {}", x);; // xの値は{}です
3+
println!("The value of x is: {}", x); // xの値は{}です
44
x = 6;
55
println!("The value of x is: {}", x);
66
}

0 commit comments

Comments
 (0)