Skip to content

Rollup of 12 pull requests #78885

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

Closed
wants to merge 41 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
c027844
Fill in things needed to stabilize int_error_matching
eopb Oct 6, 2020
83d294f
Bring char along with InvalidDigit
eopb Oct 6, 2020
8eaf0de
Remove incorrect plural
eopb Oct 6, 2020
1e7e2e4
remove OnlySign in favour of InvalidDigit
eopb Oct 6, 2020
f233abb
Add comment to helper function
eopb Oct 7, 2020
91a9f83
Define `fs::hard_link` to not follow symlinks.
sunfishcode Oct 16, 2020
23a5c21
Fix a typo in a comment.
sunfishcode Oct 19, 2020
ce00b3e
Use `link` on platforms which lack `linkat`.
sunfishcode Oct 19, 2020
d0178b4
Make it platform-specific whether `hard_link` follows symlinks.
sunfishcode Oct 20, 2020
6249cda
Disable use of `linkat` on Android as well.
sunfishcode Oct 23, 2020
199c361
Fix spelling eror
eopb Oct 26, 2020
69c301f
Small reword
eopb Oct 26, 2020
75e6dee
asci -> ASCII
eopb Oct 26, 2020
ad2d93d
Apply suggested changes
eopb Oct 26, 2020
e750238
Fix typo
eopb Oct 26, 2020
e099138
BTreeMap: stop mistaking node for an orderly place
ssomers Oct 26, 2020
b0df3f7
fix some incorrect aliasing in the BTree
RalfJung Oct 28, 2020
54a0a98
ci: gate on aarch64-gnu passing tests
pietroalbini Oct 22, 2020
1274fae
doc/rustc: promote aarch64-unknown-linux-gnu to tier 1
pietroalbini Oct 22, 2020
874cbb8
ci: build docs for aarch64-unknown-linux-gnu
pietroalbini Oct 22, 2020
eed0ceb
Recognize `private_intra_doc_links` as a lint
jyn514 Oct 19, 2020
47b21b8
Add PRIVATE_INTRA_DOC_LINKS to rustdoc special-casing
jyn514 Nov 5, 2020
dd68d0b
Vendor libtest's dependencies in the rust-src component
Gankra Nov 5, 2020
8a8ee1a
inliner: Use substs_for_mir_body
tmiasko Nov 6, 2020
67d0db6
Fix handling of item names for HIR
jyn514 Oct 22, 2020
f60fd49
Remove unused `from_hir` call
jyn514 Nov 7, 2020
9dc5dfb
Fix tab focus on restyled switches
notriddle Nov 8, 2020
b13817a
Avoid overlapping cfg attributes when both macOS and aarch64
shepmaster Nov 8, 2020
3904617
Nicer hunk headers for rust files
bjorn3 Nov 8, 2020
a2c2720
Rollup merge of #77640 - ethanboxx:int_error_matching_attempt_2, r=Ko…
Dylan-DPC Nov 8, 2020
5bbefb2
Rollup merge of #78026 - sunfishcode:symlink-hard-link, r=dtolnay
Dylan-DPC Nov 8, 2020
b7b835e
Rollup merge of #78114 - jyn514:private, r=oli-obk
Dylan-DPC Nov 8, 2020
5071801
Rollup merge of #78228 - pietroalbini:finally, r=Mark-Simulacrum
Dylan-DPC Nov 8, 2020
7f28849
Rollup merge of #78345 - jyn514:proper-names, r=varkor
Dylan-DPC Nov 8, 2020
f9c2a5d
Rollup merge of #78437 - ssomers:btree_no_ord_at_node_level, r=Mark-S…
Dylan-DPC Nov 8, 2020
73d8af2
Rollup merge of #78476 - RalfJung:btree-alias, r=Mark-Simulacrum
Dylan-DPC Nov 8, 2020
1a949e7
Rollup merge of #78674 - tmiasko:inline-substs-for-mir-body, r=oli-obk
Dylan-DPC Nov 8, 2020
38bfdae
Rollup merge of #78790 - Gankra:rust-src-vendor, r=Mark-Simulacrum
Dylan-DPC Nov 8, 2020
7cc8ab3
Rollup merge of #78868 - notriddle:master, r=GuillaumeGomez
Dylan-DPC Nov 8, 2020
1385035
Rollup merge of #78878 - shepmaster:intersecting-ignores, r=Mark-Simu…
Dylan-DPC Nov 8, 2020
5cd011d
Rollup merge of #78882 - bjorn3:nicer_hunk_headers, r=Mark-Simulacrum
Dylan-DPC Nov 8, 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
asci -> ASCII
Co-authored-by: Ashley Mannix <kodraus@hey.com>
  • Loading branch information
eopb and KodrAus authored Oct 26, 2020
commit 75e6deefee8dc68fc35bdfe5effbfdb517b03f9c
2 changes: 1 addition & 1 deletion library/core/src/num/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ pub enum IntErrorKind {
/// Contains an invalid digit in its context.
///
/// Among other causes, this variant will be constructed when parsing a string that
/// contains a non-asci char.
/// contains a non-ASCII char.
///
/// This variant is also constructed when a `+` or `-` is misplaced within a string
/// either on its own or in the middle of a number.
Expand Down