about summary refs log tree commit diff
path: root/library/std/src/io/error.rs
diff options
context:
space:
mode:
authorMark Rousskov <mark.simulacrum@gmail.com>2023-10-02 19:12:46 -0400
committerMark Rousskov <mark.simulacrum@gmail.com>2023-10-03 20:26:36 -0400
commit787d32324c1615b877811501cda564b9af335e65 (patch)
tree6cd824f2efc2c97c4ab115ab84591808e1d1c70e /library/std/src/io/error.rs
parenteb0f3ed59c6508a37c6598bc9762987f053993a7 (diff)
downloadrust-787d32324c1615b877811501cda564b9af335e65.tar.gz
rust-787d32324c1615b877811501cda564b9af335e65.zip
Bump version placeholders
Diffstat (limited to 'library/std/src/io/error.rs')
-rw-r--r--library/std/src/io/error.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/io/error.rs b/library/std/src/io/error.rs
index 5966416e32a..b63091deac2 100644
--- a/library/std/src/io/error.rs
+++ b/library/std/src/io/error.rs
@@ -536,7 +536,7 @@ impl Error {
     /// // errors can also be created from other errors
     /// let custom_error2 = Error::other(custom_error);
     /// ```
-    #[stable(feature = "io_error_other", since = "CURRENT_RUSTC_VERSION")]
+    #[stable(feature = "io_error_other", since = "1.74.0")]
     pub fn other<E>(error: E) -> Error
     where
         E: Into<Box<dyn error::Error + Send + Sync>>,