Skip to content

Rollup of 11 pull requests #142099

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
Jun 6, 2025
Merged
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
925e761
Ensure stack in `ThirBuildCx::mirror_exprs`
cuviper Jun 4, 2025
af2a85b
Ensure stack in `Parser::parse_ty`
cuviper Jun 4, 2025
64df9e3
compiler: Document the offset invariant of `OperandValue::Pair`
workingjubilee Jun 4, 2025
51acc57
canon_abi: make to_erased_extern_abi just a detail in formatting
RalfJung Jun 5, 2025
1e49ad3
Clean `rustc_attr_parsing` documentation
xizheyin Jun 5, 2025
79fbc38
doc: Fix inverted meaning in E0783.md
maflcko Jun 5, 2025
fd3da4b
Replace some `Option<Span>` with `Span` and use DUMMY_SP instead of None
oli-obk Jun 4, 2025
fde8a8d
Optimize `Seek::stream_len` impl for `File`
tbu- May 13, 2024
4b1e28b
Clarify description of `Seek::stream_len`
tbu- Jan 9, 2025
7b8f519
add myself to rotation
jdonszelmann Jun 5, 2025
9770f9b
cleaned up some tests
Kivooeo Jun 3, 2025
911d4a0
Rename `should_show_cast` to `should_fully_qualify`
fmease Jun 5, 2025
95bf127
Support middle::ty assoc const eq predicates again
fmease Jun 5, 2025
46ce08e
Fix AIX build
thaliaarchi Jun 5, 2025
c141cbf
Rollup merge of #125087 - tbu-:pr_file_stream_len, r=ChrisDenton
matthiaskrgr Jun 5, 2025
5e140db
Rollup merge of #141982 - Kivooeo:tf5, r=jieyouxu
matthiaskrgr Jun 5, 2025
c1d1f7a
Rollup merge of #142012 - oli-obk:no-optional-spans, r=fee1-dead
matthiaskrgr Jun 5, 2025
29954af
Rollup merge of #142044 - workingjubilee:document-operandvalue-pair, …
matthiaskrgr Jun 5, 2025
324681b
Rollup merge of #142047 - cuviper:s390x-stack, r=oli-obk
matthiaskrgr Jun 5, 2025
7420ae8
Rollup merge of #142058 - xizheyin:rustc-attr-parsing, r=jdonszelmann
matthiaskrgr Jun 5, 2025
2f7de4f
Rollup merge of #142067 - RalfJung:abi-map-to-str, r=workingjubilee
matthiaskrgr Jun 5, 2025
ed7d1f9
Rollup merge of #142072 - maflcko:patch-1, r=aDotInTheVoid
matthiaskrgr Jun 5, 2025
defec9f
Rollup merge of #142084 - jdonszelmann:add-review-rotation, r=BoxyUwU
matthiaskrgr Jun 5, 2025
9c89555
Rollup merge of #142091 - thaliaarchi:aix-getenv, r=workingjubilee
matthiaskrgr Jun 5, 2025
e12572f
Rollup merge of #142092 - fmease:rustdoc-alias-terms, r=GuillaumeGomez
matthiaskrgr Jun 5, 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
Prev Previous commit
Next Next commit
doc: Fix inverted meaning in E0783.md
  • Loading branch information
maflcko authored Jun 5, 2025
commit 79fbc38867529b3dc29fa0542a1e2b3e4ee592b5
2 changes: 1 addition & 1 deletion compiler/rustc_error_codes/src/error_codes/E0783.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ match 2u8 {
}
```

Older Rust code using previous editions allowed `...` to stand for exclusive
Older Rust code using previous editions allowed `...` to stand for inclusive
ranges which are now signified using `..=`.

To make this code compile replace the `...` with `..=`.
Expand Down
Loading