Skip to content

Commit

Permalink
Auto merge of #144 - lcnr:typo_fix, r=mbrubeck
Browse files Browse the repository at this point in the history
fix typo

typo

<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/rust-smallvec/144)
<!-- Reviewable:end -->
  • Loading branch information
bors-servo committed Mar 7, 2019
2 parents dfd78d1 + f4da2e0 commit 19de501
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib.rs
Expand Up @@ -369,7 +369,7 @@ unsafe impl<A: Array + Sync> Sync for SmallVecData<A> {}
/// A `Vec`-like container that can store a small number of elements inline.
///
/// `SmallVec` acts like a vector, but can store a limited amount of data inline within the
/// `Smallvec` struct rather than in a separate allocation. If the data exceeds this limit, the
/// `SmallVec` struct rather than in a separate allocation. If the data exceeds this limit, the
/// `SmallVec` will "spill" its data onto the heap, allocating a new buffer to hold it.
///
/// The amount of data that a `SmallVec` can store inline depends on its backing store. The backing
Expand Down

0 comments on commit 19de501

Please sign in to comment.