Skip to content

Rollup of 11 pull requests #132626

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 29 commits into from
Nov 5, 2024
Merged
Changes from 2 commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
e3029ab
Improve duplicate derive Copy/Clone diagnostics
VulnBandit Oct 2, 2024
10b60eb
add third help hint to diagnostic error E0027
duncpro Oct 22, 2024
a645342
More test for non-exhaustive C-like enums in FFI
nyurik Oct 29, 2024
981dc02
Revert "Avoid nested replacement ranges" from #129346.
nnethercote Nov 4, 2024
e9161db
Fix invalid coverage computation when `--output-format=json` is enabled
GuillaumeGomez Nov 4, 2024
0eff07e
Add UI regressions tests for rustdoc `--show-coverage` option
GuillaumeGomez Nov 4, 2024
5dfbc03
Rename `DocContext::is_json` into `DocContext::is_json_output`
GuillaumeGomez Nov 4, 2024
c88ba28
document `type_implements_trait`
mejrs Nov 4, 2024
75c943e
Update books
rustbot Nov 4, 2024
4872b6b
Improve example of `impl Pattern for &[char]`
eduardosm Nov 4, 2024
107b4fd
docs: fix grammar in doc comment at unix/process.rs
NotWearingPants Nov 4, 2024
f4b72dc
Move two attribute lints to be early pass (post expansion)
jdonszelmann Nov 4, 2024
7934f26
convert all const-callable intrinsics into the new form (without exte…
RalfJung Nov 1, 2024
10723c2
remove support for extern-block const intrinsics
RalfJung Nov 1, 2024
1f0ed2b
add new rustc_const_stable_intrinsic attribute for const-stable intri…
RalfJung Nov 1, 2024
5069434
most const intrinsics don't need an explicit rustc_const_unstable any…
RalfJung Nov 2, 2024
a741b33
when an intrinsic has a const-stable fallback body, we can easily exp…
RalfJung Nov 2, 2024
e37a3a8
Explain how to evaluate an obligation
mejrs Nov 5, 2024
972fef2
Rollup merge of #131153 - VulnBandit:copy_impl_vuln, r=compiler-errors
workingjubilee Nov 5, 2024
c17cf1d
Rollup merge of #132025 - duncpro:E0027, r=compiler-errors
workingjubilee Nov 5, 2024
56aa51e
Rollup merge of #132303 - nyurik:non-exhaustive-err, r=compiler-errors
workingjubilee Nov 5, 2024
23ef001
Rollup merge of #132492 - RalfJung:const-intrinsics, r=compiler-errors
workingjubilee Nov 5, 2024
f8ac0e7
Rollup merge of #132587 - nnethercote:revert-avoid-nested-replacement…
workingjubilee Nov 5, 2024
b3fc9e6
Rollup merge of #132596 - GuillaumeGomez:show-coverage, r=notriddle
workingjubilee Nov 5, 2024
d70e2e3
Rollup merge of #132598 - jdonszelmann:move-lints-to-early, r=xFrednet
workingjubilee Nov 5, 2024
3d4dd74
Rollup merge of #132601 - rustbot:docs-update, r=ehuss
workingjubilee Nov 5, 2024
67477ca
Rollup merge of #132606 - eduardosm:char-slice-str-pattern-doc, r=tgr…
workingjubilee Nov 5, 2024
33ebfff
Rollup merge of #132608 - mejrs:type_impls_trait, r=compiler-errors
workingjubilee Nov 5, 2024
7bff6ff
Rollup merge of #132609 - NotWearingPants:patch-1, r=Amanieu
workingjubilee Nov 5, 2024
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
2 changes: 1 addition & 1 deletion library/std/src/os/unix/process.rs
Original file line number Diff line number Diff line change
@@ -143,7 +143,7 @@ pub trait CommandExt: Sealed {
///
/// This function, unlike `spawn`, will **not** `fork` the process to create
/// a new child. Like spawn, however, the default behavior for the stdio
/// descriptors will be to inherited from the current process.
/// descriptors will be to inherit them from the current process.
///
/// # Notes
///