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