Skip to content
Merged
Changes from 2 commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
60218be
Remove backtrace dep from anyhow in features status dump tool
LegNeato May 1, 2025
bfe3d54
User type annotations for free consts in pattern position
BoxyUwU May 1, 2025
951412e
PassWrapper: adapt for llvm/llvm-project@f137c3d592e96330e450a8fd63ef…
erickt May 1, 2025
17d74d6
Use present indicative tense in std::io::pipe() API docs
ebkalderon May 1, 2025
042a556
Change signature of File::try_lock and File::try_lock_shared
cberner Apr 4, 2025
1d11ee2
Implement error::Error for TryLockError
cberner Apr 6, 2025
842858f
linker: Quote symbol names in .def files
petrochenkov Apr 30, 2025
dcee18b
Add a regression test
moxian May 1, 2025
882c74d
Remove fake `BoxMarker`s.
nnethercote Apr 29, 2025
3896ad0
Remove opaque type printing.
nnethercote Apr 29, 2025
760cf8d
Fix hir pretty-printing of `global_asm!`.
nnethercote Apr 29, 2025
aa7bb1c
Enable `BoxMarker` drop checking.
nnethercote Apr 29, 2025
e1a177b
Improve hir pretty-printing of attributes.
nnethercote Apr 30, 2025
809e5b5
Fix some hir pretty-printing over-indenting.
nnethercote Apr 30, 2025
9af0842
Avoid an indent for labelled loops.
nnethercote Apr 30, 2025
69e0844
Rollup merge of #139343 - cberner:filelock_wouldblock, r=workingjubilee
matthiaskrgr May 3, 2025
ca67f4d
Rollup merge of #140505 - petrochenkov:expquote, r=bjorn3
matthiaskrgr May 3, 2025
9ff7455
Rollup merge of #140534 - erickt:llvm-21, r=cuviper
matthiaskrgr May 3, 2025
b803f45
Rollup merge of #140546 - LegNeato:anyhowbacktrace, r=jieyouxu
matthiaskrgr May 3, 2025
6cf4fd3
Rollup merge of #140548 - BoxyUwU:gci_patterns_user_ty_annotation, r=…
matthiaskrgr May 3, 2025
422dfe6
Rollup merge of #140564 - ebkalderon:use-present-indicative-in-std-io…
matthiaskrgr May 3, 2025
5f9330c
Rollup merge of #140568 - moxian:reg-140545, r=compiler-errors
matthiaskrgr May 3, 2025
185f9e0
Rollup merge of #140606 - nnethercote:hir-pp, r=dtolnay
matthiaskrgr May 3, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions library/std/src/io/pipe.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use crate::io;
use crate::sys::anonymous_pipe::{AnonPipe, pipe as pipe_inner};
use crate::sys_common::{FromInner, IntoInner};

/// Create an anonymous pipe.
/// Creates an anonymous pipe.
///
/// # Behavior
///
Expand Down Expand Up @@ -108,7 +108,7 @@ impl IntoInner<AnonPipe> for PipeWriter {
}

impl PipeReader {
/// Create a new [`PipeReader`] instance that shares the same underlying file description.
/// Creates a new [`PipeReader`] instance that shares the same underlying file description.
///
/// # Examples
///
Expand Down Expand Up @@ -167,7 +167,7 @@ impl PipeReader {
}

impl PipeWriter {
/// Create a new [`PipeWriter`] instance that shares the same underlying file description.
/// Creates a new [`PipeWriter`] instance that shares the same underlying file description.
///
/// # Examples
///
Expand Down