Skip to content

Rollup of 19 pull requests #40867

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 46 commits into from
Mar 29, 2017
Merged
Changes from 1 commit
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
3ec61ea
save-analysis: allow clients to get data directly without writing to …
nrc Mar 23, 2017
5ca8a73
std: Don't cache stdio handles on Windows
alexcrichton Mar 14, 2017
1a87fc2
convert `custom_coerce_unsized_kind` into a `coerce_unsized_info`
nikomatsakis Mar 17, 2017
8e6b10a
move `check` to the top of the file, where I would expect to find it
nikomatsakis Mar 20, 2017
a29ae30
convert inherent-impl-related things to on-demand queries
nikomatsakis Mar 20, 2017
b470354
Update cargo submodule
alexcrichton Mar 23, 2017
29a052d
Fix ICE with nested macros in certain situations.
jseyfried Mar 25, 2017
8b92255
Don't stutter in operator descriptions #29365
theotherphil Mar 25, 2017
779d2f3
Link ParseBoolError to from_str method of bool
donniebishop Mar 25, 2017
6344d08
Update libc to 0.2.21
malbarbo Mar 7, 2017
a7add43
Fix c_char (u8 -> i8) definition for i686-linux-android
malbarbo Mar 16, 2017
b45c631
Fix libc::bind call on aarch64-linux-android
malbarbo Mar 17, 2017
33a6a07
FromStr implementation example
donniebishop Mar 25, 2017
64cd0be
Remove trailing whitespace
donniebishop Mar 25, 2017
fb5e63f
Change `try!` to `?`
donniebishop Mar 25, 2017
2e14bfe
rustdoc to accept `#` at the start of a markdown file #40560
projektir Mar 25, 2017
24be899
Avoid using libc::sigemptyset on Android
malbarbo Mar 25, 2017
53b7095
char::to_uppercase doc typo: s/lowercase/uppercase/
Wallacoloo Mar 25, 2017
188299e
char::to_uppercase doc typo: use the 'an' article.
Wallacoloo Mar 25, 2017
6e6dec0
change string references in asciiext r? @steveklabnik
alanstoate Mar 26, 2017
fda8e15
libcore: sort_unstable: improve randomization in break_patterns.
pftbest Mar 25, 2017
1579fbd
Fixed spelling mistakes
alanstoate Mar 26, 2017
737511e
Ensure that macro resolutions in trait positions get finalized.
jseyfried Mar 27, 2017
79feb94
allow `InternedString` to be compared to `str` directly
oli-obk Mar 9, 2017
eb447f4
Fix various useless derefs and slicings
oli-obk Mar 24, 2017
3545fb5
rustbuild: Fix compiler docs again
ollie27 Mar 27, 2017
99a069e
Fix broken Markdown and bad links in the error index
ollie27 Mar 27, 2017
e87dd42
appveyor: Downgrade MinGW to 6.2.0
alexcrichton Mar 27, 2017
e857e29
Rollup merge of #40317 - malbarbo:update-libc, r=alexcrichton
alexcrichton Mar 27, 2017
76cc08b
Rollup merge of #40516 - alexcrichton:no-cache-handles, r=aturon
alexcrichton Mar 27, 2017
666bb19
Rollup merge of #40606 - oli-obk:interned_str_usability, r=jseyfried
alexcrichton Mar 27, 2017
12f6c50
Rollup merge of #40683 - nikomatsakis:incr-comp-coerce-unsized-info, …
alexcrichton Mar 27, 2017
5137115
Rollup merge of #40751 - nrc:save-callback, r=eddyb
alexcrichton Mar 27, 2017
bccd341
Rollup merge of #40778 - alexcrichton:update-cargo, r=alexcrichton
alexcrichton Mar 27, 2017
1fe2dfc
Rollup merge of #40813 - jseyfried:fix_expansion_regression, r=nrc
alexcrichton Mar 27, 2017
bae772b
Rollup merge of #40818 - theotherphil:master, r=steveklabnik
alexcrichton Mar 27, 2017
84712fa
Rollup merge of #40819 - donniebishop:master, r=alexcrichton
alexcrichton Mar 27, 2017
6b2c4bf
Rollup merge of #40824 - donniebishop:fromstr_docexample, r=steveklabnik
alexcrichton Mar 27, 2017
4d93c12
Rollup merge of #40828 - projektir:markdown_metadata, r=steveklabnik
alexcrichton Mar 27, 2017
5e9d918
Rollup merge of #40832 - pftbest:fix_msp430, r=stjepang
alexcrichton Mar 27, 2017
8cfc93f
Rollup merge of #40833 - Wallacoloo:doc_to_uppercase_typo, r=stevekla…
alexcrichton Mar 27, 2017
498da9f
Rollup merge of #40837 - alanstoate:ascii-docs, r=steveklabnik
alexcrichton Mar 27, 2017
68c7385
Rollup merge of #40849 - jseyfried:finalize_trait_macro_resolutions, …
alexcrichton Mar 27, 2017
700e2ea
Rollup merge of #40852 - ollie27:rustbuild_compiler_docs, r=alexcrichton
alexcrichton Mar 27, 2017
0dbf84b
Rollup merge of #40853 - ollie27:error-index, r=steveklabnik
alexcrichton Mar 27, 2017
61928a0
Rollup merge of #40865 - alexcrichton:downgrade-mingw, r=arielb1
alexcrichton Mar 27, 2017
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
4 changes: 2 additions & 2 deletions src/libstd/ascii.rs
Original file line number Diff line number Diff line change
@@ -63,7 +63,7 @@ pub trait AsciiExt {
#[stable(feature = "rust1", since = "1.0.0")]
fn is_ascii(&self) -> bool;

/// Makes a copy of the value in it's ASCII upper case equivalent.
/// Makes a copy of the value in its ASCII upper case equivalent.
///
/// ASCII letters 'a' to 'z' are mapped to 'A' to 'Z',
/// but non-ASCII letters are unchanged.
@@ -92,7 +92,7 @@ pub trait AsciiExt {
#[stable(feature = "rust1", since = "1.0.0")]
fn to_ascii_uppercase(&self) -> Self::Owned;

/// Makes a copy of the value in it's ASCII lower case equivalent.
/// Makes a copy of the value in its ASCII lower case equivalent.
///
/// ASCII letters 'A' to 'Z' are mapped to 'a' to 'z',
/// but non-ASCII letters are unchanged.