Skip to content

Rollup of 11 pull requests #80364

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 26 commits into from
Dec 25, 2020
Merged
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
b66eb69
Refactored verbose print into a function
hencrice Dec 13, 2020
a272d62
Implemented a compiler diagnostic for move async mistake
diondokter Dec 18, 2020
aec3575
Rename rustc_middle::lint::LintSource
pierwill Dec 21, 2020
d3900d3
Document rustc_middle::lint::LevelSource
pierwill Dec 21, 2020
c2281cc
Stabilize `core::slice::fill`
yoshuawuyts Nov 19, 2020
163f5da
Add installation commands to `x` tool README
pierwill Dec 22, 2020
530c33c
Fix elided lifetimes shown as `'_` on async functions
jyn514 Dec 23, 2020
c625d31
Updated the match with the matches macro
Polkaverse Dec 23, 2020
8739708
Fix typo in simplify_try.rs
eltociear Dec 23, 2020
ceb66ad
Add more tests
jyn514 Dec 23, 2020
f459b0f
Addressed feedbacks
hencrice Dec 23, 2020
ecba49c
Fixed formatting
hencrice Dec 23, 2020
6dc4f7a
Don't unnecessarily override attrs for Module
jyn514 Dec 23, 2020
df94bfc
Fix typo
pierwill Dec 23, 2020
9e618ba
BTreeMap: make test cases more explicit on failure
ssomers Nov 18, 2020
21d36e0
Rollup merge of #79213 - yoshuawuyts:stabilize-slice-fill, r=m-ou-se
Dylan-DPC Dec 25, 2020
787b016
Rollup merge of #79999 - hencrice:yenlinc/79799, r=oli-obk
Dylan-DPC Dec 25, 2020
299c2fc
Rollup merge of #80160 - diondokter:move_async_fix, r=davidtwco
Dylan-DPC Dec 25, 2020
b295b8e
Rollup merge of #80274 - pierwill:lintlevelsource, r=petrochenkov
Dylan-DPC Dec 25, 2020
c24fcad
Rollup merge of #80280 - pierwill:x-readme, r=Mark-Simulacrum
Dylan-DPC Dec 25, 2020
d837407
Rollup merge of #80319 - jyn514:async-lifetimes, r=tmandry
Dylan-DPC Dec 25, 2020
2dab627
Rollup merge of #80327 - PankajChaudhary5:PankajChaudhary, r=Guillaum…
Dylan-DPC Dec 25, 2020
704f81e
Rollup merge of #80330 - eltociear:patch-2, r=lcnr
Dylan-DPC Dec 25, 2020
28267e3
Rollup merge of #80340 - jyn514:less-modules-attrs, r=GuillaumeGomez
Dylan-DPC Dec 25, 2020
3cf289b
Rollup merge of #80342 - pierwill:patch-1, r=lcnr
Dylan-DPC Dec 25, 2020
7c7812d
Rollup merge of #80352 - ssomers:btree_test_diagnostics, r=Mark-Simul…
Dylan-DPC Dec 25, 2020
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
Fix typo
  • Loading branch information
pierwill authored Dec 23, 2020
commit df94bfceb1e457f613d01d03f1f3f1c696d1c77f
2 changes: 1 addition & 1 deletion compiler/rustc_middle/src/ty/list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ extern "C" {
/// This means we can use pointer for both
/// equality comparisons and hashing.
///
/// Unlike slices, The types contained in `List` are expected to be `Copy`
/// Unlike slices, the types contained in `List` are expected to be `Copy`
/// and iterating over a `List` returns `T` instead of a reference.
///
/// Note: `Slice` was already taken by the `Ty`.
Expand Down