Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
1ec7a69
std: Add an unstable method Child::id
alexcrichton Apr 16, 2015
1254c34
Add example for from_str_radix
steveklabnik May 18, 2015
733e7ee
fmt.rs: add note about lack of padding support for some types
parkr May 19, 2015
aa570bc
Fix lifetimes trpl typo
cipherself May 19, 2015
afbe15d
Fix description of assert!
peferron May 18, 2015
c9c474c
doc: add missing fences
parir May 19, 2015
3b95cd7
doc: fix a broken link
parir May 19, 2015
01c93a5
mk: Report the prerelease version on beta again. Fixes #25618
brson May 19, 2015
f34ff7a
Auto merge of #25495 - alexcrichton:process-pid, r=aturon
bors May 19, 2015
07c25d4
Rollup merge of #25583 - steveklabnik:gh25517, r=alexcrichton
steveklabnik May 19, 2015
1bcfe5e
Rollup merge of #25585 - sferik:change-default-gender, r=steveklabnik
steveklabnik May 19, 2015
6fc93b8
Rollup merge of #25602 - parkr:patch-1, r=alexcrichton
steveklabnik May 19, 2015
1d961fd
Rollup merge of #25604 - skeuomorf:docs-lifetime, r=steveklabnik
steveklabnik May 19, 2015
7f74212
Rollup merge of #25607 - peferron:doc-macros-assert-fix, r=steveklabnik
steveklabnik May 19, 2015
dd1c68e
Rollup merge of #25611 - parir:patch-1, r=steveklabnik
steveklabnik May 19, 2015
51a0c6a
Rollup merge of #25614 - parir:patch-2, r=alexcrichton
steveklabnik May 19, 2015
ed3c644
Rollup merge of #25620 - brson:betavers, r=alexcrichton
steveklabnik May 19, 2015
55da4c6
Small fix for https://github.com/rust-lang/rust/pull/25611
steveklabnik May 20, 2015
395d01c
Fix for https://github.com/rust-lang/rust/pull/25583
steveklabnik May 20, 2015
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
Fix for #25583
  • Loading branch information
steveklabnik committed May 20, 2015
commit 395d01cf64579312b9b6924d8056264abaaf33f7
2 changes: 1 addition & 1 deletion src/libcore/num/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ macro_rules! int_impl {
/// # Examples
///
/// ```
/// assert_eq!(u32::from_str_radix("A", 16), Some(10));
/// assert_eq!(u32::from_str_radix("A", 16), Ok(10));
/// ```
#[stable(feature = "rust1", since = "1.0.0")]
#[allow(deprecated)]
Expand Down