Skip to content

Commit 19de501

Browse files
author
bors-servo
authored
Auto merge of #144 - lcnr:typo_fix, r=mbrubeck
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 -->
2 parents dfd78d1 + f4da2e0 commit 19de501

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ unsafe impl<A: Array + Sync> Sync for SmallVecData<A> {}
369369
/// A `Vec`-like container that can store a small number of elements inline.
370370
///
371371
/// `SmallVec` acts like a vector, but can store a limited amount of data inline within the
372-
/// `Smallvec` struct rather than in a separate allocation. If the data exceeds this limit, the
372+
/// `SmallVec` struct rather than in a separate allocation. If the data exceeds this limit, the
373373
/// `SmallVec` will "spill" its data onto the heap, allocating a new buffer to hold it.
374374
///
375375
/// The amount of data that a `SmallVec` can store inline depends on its backing store. The backing

0 commit comments

Comments
 (0)