From 7b5c0ecb3d902149fd6caa1d673ad5f7751320f3 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Tue, 24 Aug 2021 17:44:16 +0100 Subject: [PATCH] Fix tidy Signed-off-by: Ian Jackson --- 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 6880106a9437..51666c0a3c7f 100644 --- a/library/std/src/io/error.rs +++ b/library/std/src/io/error.rs @@ -269,7 +269,7 @@ pub enum ErrorKind { // ErrorKinds which are primarily categorisations for OS error // codes should be added above. - + // /// An error returned when an operation could not be completed because an /// "end of file" was reached prematurely. /// @@ -287,7 +287,7 @@ pub enum ErrorKind { // "Unusual" error kinds which do not correspond simply to (sets // of) OS error codes, should be added just above this comment. // `Other` and `Uncategorised` should remain at the end: - + // /// A custom error that does not fall under any other I/O error kind. /// /// This can be used to construct your own [`Error`]s that do not match any