From 5e26e8c5bdd82c507f1ab4fdb29cad6f5861e4bd Mon Sep 17 00:00:00 2001 From: Anshul <83179501+ArchUsr64@users.noreply.github.com> Date: Thu, 28 Sep 2023 11:58:37 +0530 Subject: [PATCH] changed 'rotate' to 'rotating' --- library/core/src/slice/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/core/src/slice/mod.rs b/library/core/src/slice/mod.rs index 0d635aced85..a19fcf93c4d 100644 --- a/library/core/src/slice/mod.rs +++ b/library/core/src/slice/mod.rs @@ -3410,7 +3410,7 @@ impl [T] { /// assert_eq!(a, ['e', 'f', 'a', 'b', 'c', 'd']); /// ``` /// - /// Rotate a subslice: + /// Rotating a subslice: /// /// ``` /// let mut a = ['a', 'b', 'c', 'd', 'e', 'f'];