about summary refs log tree commit diff
path: root/library/std/src/io
diff options
context:
space:
mode:
authorPietro Albini <pietro@pietroalbini.org>2025-05-10 10:51:12 +0200
committerPietro Albini <pietro@pietroalbini.org>2025-05-12 15:33:37 +0200
commit2ce08ca5d6046600ff641bfa4018247f3b9451c5 (patch)
tree780e2e53e00dcc24d994cedc2c9593a6c3f216ad /library/std/src/io
parent2b7c13e7786db66605b0a1de017c1fe4aa888206 (diff)
update cfg(bootstrap)
Diffstat (limited to 'library/std/src/io')
-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 cf3778bd290..ba765a6203f 100644
--- a/library/std/src/io/error.rs
+++ b/library/std/src/io/error.rs
@@ -48,7 +48,7 @@ use crate::{error, fmt, result, sys};
 /// }
 /// ```
 #[stable(feature = "rust1", since = "1.0.0")]
-#[cfg_attr(not(bootstrap), doc(search_unbox))]
+#[doc(search_unbox)]
 pub type Result<T> = result::Result<T, Error>;
 
 /// The error type for I/O operations of the [`Read`], [`Write`], [`Seek`], and