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