@@ -164,7 +164,7 @@ pub enum ErrorKind {
164
164
/// system-specific limit on the depth of symlink traversal.
165
165
#[ unstable( feature = "io_error_more" , issue = "86442" ) ]
166
166
FilesystemLoop ,
167
- /// Stale network file handle
167
+ /// Stale network file handle.
168
168
///
169
169
/// With some network filesystems, notably NFS, an open file (or directory) can be invalidated
170
170
/// by problems with the network or server.
@@ -204,7 +204,7 @@ pub enum ErrorKind {
204
204
/// This does not include out of quota errors.
205
205
#[ unstable( feature = "io_error_more" , issue = "86442" ) ]
206
206
StorageFull ,
207
- /// Seek on unseekable file
207
+ /// Seek on unseekable file.
208
208
///
209
209
/// Seeking was attempted on an open file handle which is not suitable for seeking - for
210
210
/// example, on Unix, a named pipe opened with `File::open`.
@@ -229,7 +229,7 @@ pub enum ErrorKind {
229
229
/// operating systems detect this situation.)
230
230
#[ unstable( feature = "io_error_more" , issue = "86442" ) ]
231
231
ExecutableFileBusy ,
232
- /// Deadlock (avoided)
232
+ /// Deadlock (avoided).
233
233
///
234
234
/// A file locking operation would result in deadlock. This situation is typically detected, if
235
235
/// at all, on a best-effort basis.
0 commit comments