From 9552f2a1fee55280b3bdda18624058aa14c1a369 Mon Sep 17 00:00:00 2001
From: Ay355 <77558710+Ay-355@users.noreply.github.com>
Date: Mon, 1 Nov 2021 14:27:42 -0700
Subject: [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
---
 zh-cn/rust-cn.html.markdown | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'zh-cn/rust-cn.html.markdown')

diff --git a/zh-cn/rust-cn.html.markdown b/zh-cn/rust-cn.html.markdown
index 5d3fc693..b77c9c38 100644
--- a/zh-cn/rust-cn.html.markdown
+++ b/zh-cn/rust-cn.html.markdown
@@ -211,7 +211,7 @@ fn main() {
 
     // `for` 循环
     let array = [1, 2, 3];
-    for i in array.iter() {
+    for i in array {
         println!("{}", i);
     }
 
-- 
cgit v1.2.3