about summary refs log tree commit diff
path: root/library/alloc/src
diff options
context:
space:
mode:
authorMarijn Schouten <hkBst@users.noreply.github.com>2025-01-19 16:45:07 +0100
committerGitHub <noreply@github.com>2025-01-19 16:45:07 +0100
commitc282ac83366bbf94359a3f5839aefa87525ec363 (patch)
tree04af03cad9b6316667a68b2871b2d5c24d67c69d /library/alloc/src
parent01d1aeff7b7aafa0cdcfa9eb1f5158b22c6a4839 (diff)
downloadrust-c282ac83366bbf94359a3f5839aefa87525ec363.tar.gz
rust-c282ac83366bbf94359a3f5839aefa87525ec363.zip
Fix whitespace
Diffstat (limited to 'library/alloc/src')
-rw-r--r--library/alloc/src/vec/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/alloc/src/vec/mod.rs b/library/alloc/src/vec/mod.rs
index 9c7ff1cf58c..d47d924b5b1 100644
--- a/library/alloc/src/vec/mod.rs
+++ b/library/alloc/src/vec/mod.rs
@@ -2576,7 +2576,7 @@ impl<T, A: Allocator> Vec<T, A> {
 
     /// Removes the subslice indicated by the given range from the vector,
     /// returning a double-ended iterator over the removed subslice.
-    /// 
+    ///
     /// If the iterator is dropped before being fully consumed,
     /// it drops the remaining removed elements.
     ///