diff options
Diffstat (limited to 'ru-ru/rust-ru.html.markdown')
-rw-r--r-- | ru-ru/rust-ru.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ru-ru/rust-ru.html.markdown b/ru-ru/rust-ru.html.markdown index 9293a40e..d46d301c 100644 --- a/ru-ru/rust-ru.html.markdown +++ b/ru-ru/rust-ru.html.markdown @@ -226,7 +226,7 @@ fn main() { // `for` loops/iteration let array = [1, 2, 3]; - for i in array.iter() { + for i in array { println!("{}", i); } |