1
Fork 0

fix various typos in doc comments

This commit is contained in:
Andy Russell 2018-11-12 13:05:20 -05:00
parent 0195812aea
commit 4e35cbb22e
No known key found for this signature in database
GPG key ID: BE2221033EDBC374
49 changed files with 68 additions and 68 deletions

View file

@ -44,7 +44,7 @@ use boxed::Box;
/// This enables you to use capacity growing logic catch the overflows in your length
/// that might occur with zero-sized types.
///
/// However this means that you need to be careful when roundtripping this type
/// However this means that you need to be careful when round-tripping this type
/// with a `Box<[T]>`: `cap()` won't yield the len. However `with_capacity`,
/// `shrink_to_fit`, and `from_box` will actually set RawVec's private capacity
/// field. This allows zero-sized types to not be special-cased by consumers of