Skip to content

Commit 272b7d0

Browse files
committed
Auto merge of rust-lang#82249 - JohnTitor:rollup-3jbqija, r=JohnTitor
Rollup of 8 pull requests Successful merges: - rust-lang#82055 (Add diagnostics for specific cases for const/type mismatch err) - rust-lang#82155 (Use !Sync std::lazy::OnceCell in usefulness checking) - rust-lang#82202 (add specs for riscv32/riscv64 musl targets) - rust-lang#82203 (Move some tests to more reasonable directories - 4) - rust-lang#82211 (make `suggest_setup` help messages better) - rust-lang#82212 (Remove redundant rustc_data_structures path component) - rust-lang#82240 (remove useless ?s (clippy::needless_question_marks)) - rust-lang#82243 (Add more intra-doc links to std::io) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
2 parents 103879f + a689896 commit 272b7d0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

std/src/io/stdio.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ pub struct Stdin {
231231
inner: &'static Mutex<BufReader<StdinRaw>>,
232232
}
233233

234-
/// A locked reference to the `Stdin` handle.
234+
/// A locked reference to the [`Stdin`] handle.
235235
///
236236
/// This handle implements both the [`Read`] and [`BufRead`] traits, and
237237
/// is constructed via the [`Stdin::lock`] method.
@@ -494,7 +494,7 @@ pub struct Stdout {
494494
inner: Pin<&'static ReentrantMutex<RefCell<LineWriter<StdoutRaw>>>>,
495495
}
496496

497-
/// A locked reference to the `Stdout` handle.
497+
/// A locked reference to the [`Stdout`] handle.
498498
///
499499
/// This handle implements the [`Write`] trait, and is constructed via
500500
/// the [`Stdout::lock`] method.
@@ -708,9 +708,9 @@ pub struct Stderr {
708708
inner: Pin<&'static ReentrantMutex<RefCell<StderrRaw>>>,
709709
}
710710

711-
/// A locked reference to the `Stderr` handle.
711+
/// A locked reference to the [`Stderr`] handle.
712712
///
713-
/// This handle implements the `Write` trait and is constructed via
713+
/// This handle implements the [`Write`] trait and is constructed via
714714
/// the [`Stderr::lock`] method.
715715
///
716716
/// ### Note: Windows Portability Consideration

0 commit comments

Comments
 (0)