File tree 1 file changed +4
-3
lines changed
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -155,9 +155,10 @@ pub enum ErrorKind {
155
155
/// The filesystem or storage medium is read-only, but a write operation was attempted.
156
156
#[ unstable( feature = "io_error_more" , issue = "86442" ) ]
157
157
ReadOnlyFilesystem ,
158
- /// Loop in the filesystem; often, too many levels of symbolic links.
158
+ /// Loop in the filesystem or IO subsystem ; often, too many levels of symbolic links.
159
159
///
160
- /// There was a loop (or excessively long chain) resolving a filesystem object.
160
+ /// There was a loop (or excessively long chain) resolving a filesystem object
161
+ /// or file IO object.
161
162
///
162
163
/// On Unix this is usually the result of a symbolic link loop; or, of exceeding the
163
164
/// system-specific limit on the depth of symlink traversal.
@@ -338,7 +339,7 @@ impl ErrorKind {
338
339
PermissionDenied => "permission denied" ,
339
340
ReadOnlyFilesystem => "read-only filesystem or storage medium" ,
340
341
StaleNetworkFileHandle => "stale network file handle" ,
341
- FilesystemLoop => "filesystem loop (e.g. symbolic link loop)" ,
342
+ FilesystemLoop => "filesystem loop or indirection limit (e.g. symlink loop)" ,
342
343
NotSeekable => "seek on unseekable file" ,
343
344
TimedOut => "timed out" ,
344
345
TooManyLinks => "too many links" ,
You can’t perform that action at this time.
0 commit comments