summaryrefslogtreecommitdiffhomepage
path: root/de-de/rust-de.html.markdown
diff options
context:
space:
mode:
authorAy355 <77558710+Ay-355@users.noreply.github.com>2021-11-01 14:27:42 -0700
committerGitHub <noreply@github.com>2021-11-01 22:27:42 +0100
commit9552f2a1fee55280b3bdda18624058aa14c1a369 (patch)
tree71897eacc9ca579d823036b46618b7859a17386c /de-de/rust-de.html.markdown
parent3cdecb5941f6f06bc9d942641622614359bf6980 (diff)
[rust/all] Remove .iter() on array example (#4230)
As of Rust 1.53.0, arrays implement the IntoIterator trait, making .iter() on an array unnecessary
Diffstat (limited to 'de-de/rust-de.html.markdown')
-rw-r--r--de-de/rust-de.html.markdown2
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);
}