Skip to content

Commit 0a3f9f6

Browse files
翻訳コメント中の矢印を削除
1 parent 4898b1f commit 0a3f9f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/rust-2021/IntoIterator-for-arrays.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ by calling `iter()` which also iterates over owned arrays by reference:
180180
fn main() {
181181
let array = [1u8, 2, 3];
182182
for x in array.iter() { // <- This line changed
183-
// <- この行を書き換えた
183+
// この行を書き換えた
184184
// x is a `&u8` in all editions
185185
// x はすべてのエディションで `&u8`
186186
}

0 commit comments

Comments
 (0)