about summary refs log tree commit diff
diff options
context:
space:
mode:
authorXAMPPRocky <4464295+XAMPPRocky@users.noreply.github.com>2021-05-28 05:37:41 +0200
committerGitHub <noreply@github.com>2021-05-28 05:37:41 +0200
commite94eda2473a32cebfc437fec8535f449dd22d0d6 (patch)
tree3d8784a91f1785fdef065bdc61f9b0f7ce48e661
parent9e2ad50a69dbfbd698e3bd8ab4bb84df9b67ab73 (diff)
downloadrust-e94eda2473a32cebfc437fec8535f449dd22d0d6.tar.gz
rust-e94eda2473a32cebfc437fec8535f449dd22d0d6.zip
Update RELEASES.md
Co-authored-by: Alexander Ronald Altman <alexanderaltman@me.com>
-rw-r--r--RELEASES.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/RELEASES.md b/RELEASES.md
index ebf76d8158e..ca8ae4a924a 100644
--- a/RELEASES.md
+++ b/RELEASES.md
@@ -37,7 +37,7 @@ Libraries
   Android platforms when available.][81469]
 - [`slice::IterMut<'_, T>` now implements `AsRef<[T]>`][82771]
 - [Arrays of any length now implement `IntoIterator`.][84147]
-  Currently call `.into_iter()` as a method on an array will
+  Currently calling `.into_iter()` as a method on an array will
   return `impl Iterator<Item=&T>`, but this may change in a
   future edition to change `Item` to `T`. Calling `IntoIterator::into_iter`
   directly on arrays will provide `impl Iterator<Item=T>` as expected.