Skip to content

Commit 7475a34

Browse files
committed
Stabilize std::io::ErrorKind::InvalidFilename
1 parent 705421b commit 7475a34

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

library/std/src/io/error.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -373,8 +373,8 @@ pub enum ErrorKind {
373373
TooManyLinks,
374374
/// A filename was invalid.
375375
///
376-
/// This error can also cause if it exceeded the filename length limit.
377-
#[unstable(feature = "io_error_more", issue = "86442")]
376+
/// This error can also occur if a length limit for a name was exceeded.
377+
#[stable(feature = "io_error_invalid_filename", since = "CURRENT_RUSTC_VERSION")]
378378
InvalidFilename,
379379
/// Program argument list too long.
380380
///

0 commit comments

Comments
 (0)