Skip to content

Commit 333d42d

Browse files
committed
ErrorKind: Add missing full stops
Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
1 parent f00975e commit 333d42d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

library/std/src/io/error.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ pub enum ErrorKind {
164164
/// system-specific limit on the depth of symlink traversal.
165165
#[unstable(feature = "io_error_more", issue = "86442")]
166166
FilesystemLoop,
167-
/// Stale network file handle
167+
/// Stale network file handle.
168168
///
169169
/// With some network filesystems, notably NFS, an open file (or directory) can be invalidated
170170
/// by problems with the network or server.
@@ -204,7 +204,7 @@ pub enum ErrorKind {
204204
/// This does not include out of quota errors.
205205
#[unstable(feature = "io_error_more", issue = "86442")]
206206
StorageFull,
207-
/// Seek on unseekable file
207+
/// Seek on unseekable file.
208208
///
209209
/// Seeking was attempted on an open file handle which is not suitable for seeking - for
210210
/// example, on Unix, a named pipe opened with `File::open`.
@@ -229,7 +229,7 @@ pub enum ErrorKind {
229229
/// operating systems detect this situation.)
230230
#[unstable(feature = "io_error_more", issue = "86442")]
231231
ExecutableFileBusy,
232-
/// Deadlock (avoided)
232+
/// Deadlock (avoided).
233233
///
234234
/// A file locking operation would result in deadlock. This situation is typically detected, if
235235
/// at all, on a best-effort basis.

0 commit comments

Comments
 (0)