diff options
| author | bors <bors@rust-lang.org> | 2014-06-08 12:51:51 -0700 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2014-06-08 12:51:51 -0700 |
| commit | e688d0e846e4fc24ab032b2c301fa355235c108a (patch) | |
| tree | ed6522d5f7ea5436c9fdd32cd9d6bb6c75c52e3f /src/libcollections | |
| parent | 8dcbdaaeb79c69cc3ba6efb68650c89ca47969e4 (diff) | |
| parent | 45e56eccbed3161dd9de547c6c2dcf618114a484 (diff) | |
| download | rust-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.rs | 2 |
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(); |
