Skip to content

Commit 25e25bc

Browse files
committed
Insert paren
1 parent 6be1521 commit 25e25bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1.6/ja/book/vectors.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ let v = vec![1, 2, 3, 4, 5]; // v: Vec<i32>
1818
<!-- (Notice that unlike the `println!` macro we’ve used in the past, we use square -->
1919
<!-- brackets `[]` with `vec!` macro. Rust allows you to use either in either situation, -->
2020
<!-- this is just convention.) -->
21-
(以前使った`println!` マクロと異なり、`vec!` マクロで 角括弧 `[]` を利用しました。
21+
(以前使った`println!` マクロと異なり、`vec!` マクロで 角括弧 `[]` を利用しました。)
2222
Rustではどちらの括弧もどちらのシチュエーションでも利用可能であり、解りやすさのためです。
2323

2424
<!-- There’s an alternate form of `vec!` for repeating an initial value: -->

0 commit comments

Comments
 (0)