Skip to content

Commit

Permalink
auto merge of #15979 : Randati/rust/patch-2, r=kballard
Browse files Browse the repository at this point in the history
  • Loading branch information
bors committed Jul 25, 2014
2 parents 74db699 + c770007 commit 66a0b52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libcore/fmt/num.rs
Expand Up @@ -119,7 +119,7 @@ pub struct Radix {

impl Radix {
fn new(base: u8) -> Radix {
assert!(2 <= base && base <= 36, "the base must be in the range of 0..36: {}", base);
assert!(2 <= base && base <= 36, "the base must be in the range of 2..36: {}", base);
Radix { base: base }
}
}
Expand Down

0 comments on commit 66a0b52

Please sign in to comment.