about summary refs log tree commit diff
path: root/library/std/src
diff options
context:
space:
mode:
authorIan Jackson <ijackson@chiark.greenend.org.uk>2021-08-24 17:44:16 +0100
committerIan Jackson <ijackson@chiark.greenend.org.uk>2021-08-24 17:45:53 +0100
commit7b5c0ecb3d902149fd6caa1d673ad5f7751320f3 (patch)
tree8c91ecfb3e6efa00bc3b8cbb508bbb893be51f1c /library/std/src
parent4c0203eb4b3406cd2088c5d0092a0445294e2f6c (diff)
downloadrust-7b5c0ecb3d902149fd6caa1d673ad5f7751320f3.tar.gz
rust-7b5c0ecb3d902149fd6caa1d673ad5f7751320f3.zip
Fix tidy
Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
Diffstat (limited to 'library/std/src')
-rw-r--r--library/std/src/io/error.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/std/src/io/error.rs b/library/std/src/io/error.rs
index 6880106a943..51666c0a3c7 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