Fix typos

Co-authored-by: the8472 <the8472@users.noreply.github.com>
This commit is contained in:
Mara Bos 2021-03-21 21:44:25 +01:00 committed by GitHub
parent 7b71719faf
commit 6bbcc5bfbb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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<const MSG: &'static str>(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) }
}