Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
2b9ba46
fix indefinite article in cell.rs
petar-dambovaliev Dec 12, 2020
2a67e2e
Revert "Get rid of custom pretty-printing in rustdoc"
LeSeulArtichaut Feb 6, 2021
471ed5f
Use ItemCtxt::to_ty
camsteffen Feb 10, 2021
883988b
RELEASES.md 1.50: Group platform support notes together
joshtriplett Feb 10, 2021
d3fea13
bootstrap: Locate llvm-dwp based on llvm-config bindir
dtolnay Feb 10, 2021
a6d4137
Fix assosiated typo
therealprof Feb 10, 2021
f13bbea
Catch errors on localStorage setting failure
lovasoa Feb 10, 2021
16f0ccd
Fix getCurrentValue
lovasoa Feb 10, 2021
793e88a
Add regression test for #81289
LeSeulArtichaut Feb 6, 2021
089ee27
Do not ICE on range patterns in function arguments
LeSeulArtichaut Feb 8, 2021
5034b50
bootstrap: fix wrong docs installation path
pietroalbini Feb 10, 2021
e03f097
Make suggestion of changing mutability of arguments broader
hkmatsumoto Feb 11, 2021
a99d869
Improve long explanation for E0542 and E0546
jesusprubio Feb 11, 2021
f492b25
dist: include src/build_helper as part of the crate graph for rustc-dev.
bnjbvr Feb 11, 2021
0df8dde
Stack probes: fix error message
ojeda Feb 11, 2021
583563d
clean up clean::Static struct
GuillaumeGomez Feb 11, 2021
67fb96c
Fix private intra-doc warnings on associated items
jyn514 Feb 12, 2021
a355507
Tell user how to fix CI file being not up to date
Mark-Simulacrum Feb 12, 2021
c8eeb34
Fix typo in mod.rs
eltociear Feb 12, 2021
0b6876c
Rollup merge of #79983 - petar-dambovaliev:master, r=Dylan-DPC
JohnTitor Feb 12, 2021
327762f
Rollup merge of #81831 - LeSeulArtichaut:81289-mut-arg, r=camelid
JohnTitor Feb 12, 2021
c07260d
Rollup merge of #81947 - camsteffen:to-ty, r=jyn514
JohnTitor Feb 12, 2021
2a76add
Rollup merge of #81954 - joshtriplett:release-notes-group-platform-no…
JohnTitor Feb 12, 2021
67403da
Rollup merge of #81955 - dtolnay:dwp, r=Mark-Simulacrum
JohnTitor Feb 12, 2021
0b7fc80
Rollup merge of #81959 - therealprof:fix-typo, r=oli-obk
JohnTitor Feb 12, 2021
0f47e19
Rollup merge of #81964 - lovasoa:patch-1, r=GuillaumeGomez
JohnTitor Feb 12, 2021
459dda9
Rollup merge of #81968 - pietroalbini:fix-doc-install-path, r=Mark-Si…
JohnTitor Feb 12, 2021
46aef0e
Rollup merge of #81990 - matsujika:suggest-mut-reference, r=estebank
JohnTitor Feb 12, 2021
44d2871
Rollup merge of #81994 - jesusprubio:improve-long-explanation-e0542-e…
JohnTitor Feb 12, 2021
71fd431
Rollup merge of #81997 - bnjbvr:dist-include-build-helper, r=Mark-Sim…
JohnTitor Feb 12, 2021
55539cb
Rollup merge of #82003 - ojeda:stack-probe-msg, r=estebank
JohnTitor Feb 12, 2021
1a9d20b
Rollup merge of #82004 - GuillaumeGomez:clean-static-struct, r=jyn514
JohnTitor Feb 12, 2021
6830ea1
Rollup merge of #82011 - jyn514:warn-private-assoc-item, r=max-heller
JohnTitor Feb 12, 2021
095b76c
Rollup merge of #82013 - Mark-Simulacrum:better-ci-error, r=jyn514
JohnTitor Feb 12, 2021
ff8b7f2
Rollup merge of #82017 - eltociear:patch-8, r=jyn514
JohnTitor Feb 12, 2021
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 assosiated typo
Introduced in d3c4dbd, noticed only
after the fact, sorry. 😅

Signed-off-by: Daniel Egger <[email protected]>
  • Loading branch information
therealprof committed Feb 10, 2021
commit a6d413715c2b0439ab27cb69a757377f1c8c397a
Original file line number Diff line number Diff line change
Expand Up @@ -540,7 +540,7 @@ impl<'a, 'tcx> MirBorrowckCtxt<'a, 'tcx> {
);
}

// Attempt to search similar mutable assosiated items for suggestion.
// Attempt to search similar mutable associated items for suggestion.
// In the future, attempt in all path but initially for RHS of for_loop
fn suggest_similar_mut_method_for_for_loop(&self, err: &mut DiagnosticBuilder<'_>) {
let hir = self.infcx.tcx.hir();
Expand Down