Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 2 commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
9370440
stabilize `const_array_each_ref`
fee1-dead Jul 3, 2025
f4b3415
[Doc] Add links to the various collections
QnJ1c2kNCg Jul 31, 2025
e13e1e4
fix(debuginfo): handle false positives in overflow check
adwinwhite Aug 12, 2025
be9cd3c
stdlib: Replace typedef -> type alias in doc comment
typesanitizer Aug 17, 2025
ee7627e
std_detect: RISC-V: implement implication to "C"
a4lg Aug 19, 2025
c2e16cb
UnsafePinned::raw_get: sync signature with get
RalfJung Aug 19, 2025
bfd5d59
Prevent impossible combinations in `ast::ModKind`.
nnethercote Aug 19, 2025
6a088fd
Defer tail call ret ty equality to check_tail_calls
compiler-errors Aug 19, 2025
555986d
Fix some doc typos
dns2utf8 Aug 19, 2025
5a451b8
Add new `--test-codegen-backend` bootstrap option
GuillaumeGomez Aug 11, 2025
e4cdc0f
Split compiletest `--codegen-backend` into two options `--default-cod…
GuillaumeGomez Aug 18, 2025
27e6726
Do not use effective_visibilities query for Adt types of a local trai…
xizheyin Aug 20, 2025
29f0d8b
Download CI GCC into the correct directory
Kobzol Aug 20, 2025
e1045c2
Fix JS search scripts path
GuillaumeGomez Aug 20, 2025
2da0ec3
Enforce correct number of arguments for `"x86-interrupt"` functions
GrigorenkoPV Aug 20, 2025
e57e5f0
Unconditionally-const supertraits are considered not dyn compatible
compiler-errors Aug 19, 2025
cadb56d
Add flock support for cygwin
Berrysoft Aug 20, 2025
992c025
Enable triagebot `[review-changes-since]` feature
Urgau Aug 20, 2025
f34fa22
fix: typo
ttajakka Aug 20, 2025
b65fab6
Move `IntoDiagArg` earlier in the dependency chains
joshtriplett Aug 14, 2025
f3c8b7a
Split `rustc_hir_id` out of `rustc_hir`
joshtriplett Aug 14, 2025
e46ec74
Update test output for change to number of crates
joshtriplett Aug 14, 2025
6cb9dd5
rustc_lint_defs: Use `DefPathHash` from `rustc_span` rather than `rus…
joshtriplett Aug 14, 2025
f0c8f70
rustc_lint_defs: Eliminate the dependency on `rustc_hir` for `Namespace`
joshtriplett Aug 14, 2025
bad4f5c
Eliminate unnecessary dependency from `rustc_mir_dataflow` to `rustc_…
joshtriplett Aug 14, 2025
0f0d702
Eliminate unnecessary dependency from `rustc_traits` to `rustc_hir`
joshtriplett Aug 14, 2025
2ea7e7d
rustc_hir_id: Add a comment explaining why the crate exists
joshtriplett Aug 18, 2025
8e62f0f
Rollup merge of #143383 - fee1-dead-contrib:push-mstmlwuskxyy, r=dtolnay
jhpratt Aug 21, 2025
32824b5
Rollup merge of #144758 - QnJ1c2kNCg:master, r=Noratrieb
jhpratt Aug 21, 2025
f1a7294
Rollup merge of #144915 - compiler-errors:tail-call-ret-ty-equality, …
jhpratt Aug 21, 2025
b0dd772
Rollup merge of #145256 - GuillaumeGomez:bootstrap-test-codegen-backe…
jhpratt Aug 21, 2025
537d5f4
Rollup merge of #145297 - adwinwhite:recursive-debuginfo, r=wesleywiser
jhpratt Aug 21, 2025
62582eb
Rollup merge of #145390 - joshtriplett:rustc-diag-value-earlier, r=lcnr
jhpratt Aug 21, 2025
03aa3b8
Rollup merge of #145415 - a4lg:riscv-implication-to-c, r=Amanieu
jhpratt Aug 21, 2025
d54aaed
Rollup merge of #145525 - typesanitizer:vg/doc, r=Mark-Simulacrum
jhpratt Aug 21, 2025
25b81bf
Rollup merge of #145590 - nnethercote:ModKind-Inline, r=petrochenkov
jhpratt Aug 21, 2025
1d02056
Rollup merge of #145593 - RalfJung:unsafepinned-raw_get, r=Mark-Simul…
jhpratt Aug 21, 2025
803456a
Rollup merge of #145621 - dns2utf8:fix_some_typos, r=petrochenkov
jhpratt Aug 21, 2025
64c43ed
Rollup merge of #145627 - compiler-errors:const-supertrait-dyn-compat…
jhpratt Aug 21, 2025
0af35f6
Rollup merge of #145642 - xizheyin:145611, r=lcnr
jhpratt Aug 21, 2025
5ea203a
Rollup merge of #145650 - GuillaumeGomez:fix-js-search-scripts-path, …
jhpratt Aug 21, 2025
2032ede
Rollup merge of #145654 - Kobzol:gcc-ci-root, r=jieyouxu
jhpratt Aug 21, 2025
99c647f
Rollup merge of #145662 - GrigorenkoPV:x86-interrupt, r=compiler-errors
jhpratt Aug 21, 2025
018568f
Rollup merge of #145673 - Berrysoft:cygwin-fix-flock, r=joshtriplett
jhpratt Aug 21, 2025
a060d60
Rollup merge of #145674 - Urgau:triagebot-review-changes-since, r=Kobzol
jhpratt Aug 21, 2025
49eb781
Rollup merge of #145678 - ttajakka:master, r=estebank
jhpratt Aug 21, 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
2 changes: 1 addition & 1 deletion library/core/src/task/poll.rs
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ impl<T, E> Poll<Result<T, E>> {
}
}

/// Maps a `Poll::Ready<Result<T, E>>` to `Poll::Ready<Result<T, F>>` by
/// Maps a `Poll::Ready<Result<T, E>>` to `Poll::Ready<Result<T, U>>` by
/// applying a function to a contained `Poll::Ready(Err)` value, leaving all other
/// variants untouched.
///
Expand Down
Loading