diff options
Diffstat (limited to 'uk-ua/rust-ua.html.markdown')
-rw-r--r-- | uk-ua/rust-ua.html.markdown | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/uk-ua/rust-ua.html.markdown b/uk-ua/rust-ua.html.markdown index 4ec2b7c9..4aad0cbb 100644 --- a/uk-ua/rust-ua.html.markdown +++ b/uk-ua/rust-ua.html.markdown @@ -1,5 +1,5 @@ --- -language: rust +language: Rust contributors: - ["P1start", "http://p1start.github.io/"] translators: @@ -233,7 +233,7 @@ fn main() { // Цикл `for` let array = [1, 2, 3]; - for i in array.iter() { + for i in array { println!("{}", i); } |