We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents dfd78d1 + f4da2e0 commit 19de501Copy full SHA for 19de501
lib.rs
@@ -369,7 +369,7 @@ unsafe impl<A: Array + Sync> Sync for SmallVecData<A> {}
369
/// A `Vec`-like container that can store a small number of elements inline.
370
///
371
/// `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
+/// `SmallVec` struct rather than in a separate allocation. If the data exceeds this limit, the
373
/// `SmallVec` will "spill" its data onto the heap, allocating a new buffer to hold it.
374
375
/// The amount of data that a `SmallVec` can store inline depends on its backing store. The backing
0 commit comments