Fixed typo

v0.7.x
Peter Hall 2018-04-05 16:08:24 +01:00 committed by whitequark
parent e2cc254a3c
commit d9c4f784d4
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ use alloc::vec::Vec;
///
/// The purpose of this enum is providing good ergonomics with `std` present while making
/// it possible to avoid having a heap at all (which of course means that `std` is not present).
/// To achieve this, the variants other than `Borrow` are only available when the corresponding
/// To achieve this, the variants other than `Borrowed` are only available when the corresponding
/// feature is opted in.
///
/// A function that requires a managed object should be generic over an `Into<ManagedSlice<'a, T>>`