Skip to content

Rollup of 7 pull requests #125611

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 25 commits into from
May 27, 2024
Merged
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
f94fa6b
Some Result combinations work like an Option.
Lokathor May 8, 2024
10f8d1f
use teletype on the attribute name
Lokathor May 8, 2024
b468f21
Don't use `T` with both Result and Option, improve explanation.
Lokathor May 13, 2024
17bd43c
codegen: tweak/extend shift comments
RalfJung May 15, 2024
2782123
cleanup dependence of `ExtCtxt` in transcribe when macro expansion
SparrowLii May 25, 2024
41d4a95
Add "better" edition handling on lint-docs tool
spastorino May 25, 2024
56dddd4
Remove deprecated field `dist.missing-tools`
onur-ozkan May 25, 2024
c76477d
add change entry
onur-ozkan May 25, 2024
939f267
revert to the inconsistent paragraph wrapping.
Lokathor May 25, 2024
22668e8
Resolve https://github.com/rust-lang/rust/pull/124870#issuecomment-21…
Lokathor May 25, 2024
2e8f14f
correct for copy paste errors when fixing wrapping.
Lokathor May 25, 2024
2b2f83e
github showed that weird.
Lokathor May 25, 2024
f8279b1
Fix URL target, it's in the module not the type.
Lokathor May 25, 2024
9b480da
It seems that anchor names are implicitly all lowercase
Lokathor May 25, 2024
bbcdb4f
Give EarlyBinder a tcx parameter
compiler-errors May 27, 2024
993553c
Uplift EarlyBinder
compiler-errors May 27, 2024
f922929
Use EarlyBinder in rustc_type_ir, simplify imports
compiler-errors May 27, 2024
e4abfae
Migrate `run-make/compile-stdin` to `rmake.rs`
GuillaumeGomez May 27, 2024
6dddc88
Rollup merge of #124870 - Lokathor:update-result-docs, r=dtolnay
GuillaumeGomez May 27, 2024
86f2fa3
Rollup merge of #125148 - RalfJung:codegen-sh, r=scottmcm
GuillaumeGomez May 27, 2024
ad37f40
Rollup merge of #125522 - spastorino:fix-lint-docs-edition-handling, …
GuillaumeGomez May 27, 2024
f50b4f5
Rollup merge of #125530 - SparrowLii:expand2, r=petrochenkov
GuillaumeGomez May 27, 2024
cfa7ab4
Rollup merge of #125535 - onur-ozkan:remove-deprecated-field, r=clubb…
GuillaumeGomez May 27, 2024
a9c125f
Rollup merge of #125597 - compiler-errors:early-binder, r=jackh726
GuillaumeGomez May 27, 2024
7083131
Rollup merge of #125607 - GuillaumeGomez:migrate-compile-stdin, r=jie…
GuillaumeGomez May 27, 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
Prev Previous commit
Next Next commit
use teletype on the attribute name
  • Loading branch information
Lokathor committed May 8, 2024
commit 10f8d1ffef464d8c6cc8add49f5850cf8a33cfb3
2 changes: 1 addition & 1 deletion library/core/src/result.rs
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@
//! all of the following conditions:
//! * Is a zero-sized type with alignment 1 (a "1-ZST").
//! * Has no fields.
//! * Does not have the #[non_exhaustive] attribute.
//! * Does not have the `#[non_exhaustive]` attribute.
//!
//! For example, `Result<NonZeroI32, ()>` or `Result<(), NonZeroI32>` would both
//! have the same guarantees as `Option<NonZeroI32>`. The only difference is the
Expand Down
Loading