about summary refs log tree commit diff
path: root/src/libcollections
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-06-08 12:51:51 -0700
committerbors <bors@rust-lang.org>2014-06-08 12:51:51 -0700
commite688d0e846e4fc24ab032b2c301fa355235c108a (patch)
treeed6522d5f7ea5436c9fdd32cd9d6bb6c75c52e3f /src/libcollections
parent8dcbdaaeb79c69cc3ba6efb68650c89ca47969e4 (diff)
parent45e56eccbed3161dd9de547c6c2dcf618114a484 (diff)
downloadrust-e688d0e846e4fc24ab032b2c301fa355235c108a.tar.gz
rust-e688d0e846e4fc24ab032b2c301fa355235c108a.zip
auto merge of #14751 : jbcrail/rust/fix-comments, r=alexcrichton
Diffstat (limited to 'src/libcollections')
-rw-r--r--src/libcollections/vec.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcollections/vec.rs b/src/libcollections/vec.rs
index 6ca21262f51..37546f64d5f 100644
--- a/src/libcollections/vec.rs
+++ b/src/libcollections/vec.rs
@@ -1532,7 +1532,7 @@ impl<T> FromVec<T> for ~[T] {
 
         // In a post-DST world, we can attempt to reuse the Vec allocation by calling
         // shrink_to_fit() on it. That may involve a reallocation+memcpy, but that's no
-        // diffrent than what we're doing manually here.
+        // different than what we're doing manually here.
 
         let vp = v.as_mut_ptr();