We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 74db699 + c770007 commit 66a0b52Copy full SHA for 66a0b52
src/libcore/fmt/num.rs
@@ -119,7 +119,7 @@ pub struct Radix {
119
120
impl Radix {
121
fn new(base: u8) -> Radix {
122
- 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);
123
Radix { base: base }
124
}
125
0 commit comments