From d9c4f784d4569e89d3ef07b202a3d47b2a3cea78 Mon Sep 17 00:00:00 2001 From: Peter Hall Date: Thu, 5 Apr 2018 16:08:24 +0100 Subject: [PATCH] Fixed typo --- src/slice.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slice.rs b/src/slice.rs index 06bb334..b8e51b5 100644 --- a/src/slice.rs +++ b/src/slice.rs @@ -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>`