diff options
Diffstat (limited to 'ru-ru/rust-ru.html.markdown')
-rw-r--r-- | ru-ru/rust-ru.html.markdown | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ru-ru/rust-ru.html.markdown b/ru-ru/rust-ru.html.markdown index 9293a40e..a568ac37 100644 --- a/ru-ru/rust-ru.html.markdown +++ b/ru-ru/rust-ru.html.markdown @@ -1,5 +1,5 @@ --- -language: rust +language: Rust filename: learnrust-ru.rs contributors: @@ -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); } |