From 6bbcc5bfbbfd9ba5a6d584a753fa32d80e3a7a17 Mon Sep 17 00:00:00 2001 From: Mara Bos Date: Sun, 21 Mar 2021 21:44:25 +0100 Subject: [PATCH] Fix typos Co-authored-by: the8472 --- library/std/src/io/error.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/std/src/io/error.rs b/library/std/src/io/error.rs index f4802c32a72..2122aa755e1 100644 --- a/library/std/src/io/error.rs +++ b/library/std/src/io/error.rs @@ -264,11 +264,11 @@ impl Error { /// Creates a new I/O error from a known kind of error as well as a /// constant message. /// - /// This function not allocate. + /// This function does not allocate. /// /// This function should maybe change to /// `new_const(kind: ErrorKind)` - /// in the future, when const generics allows that. + /// in the future, when const generics allow that. pub(crate) const fn new_const(kind: ErrorKind, message: &'static &'static str) -> Error { Self { repr: Repr::SimpleMessage(kind, message) } }