mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-25 08:13:41 +00:00
Fix typos
Co-authored-by: the8472 <the8472@users.noreply.github.com>
This commit is contained in:
parent
7b71719faf
commit
6bbcc5bfbb
@ -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) }
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user