Removed trailing whitespace in on line 242 in int_macros.rs and on line 156 in uint_macros.rs
This commit is contained in:
parent
f197e695ca
commit
a14c34d670
@ -239,11 +239,11 @@ impl Primitive for $T {}
|
|||||||
/// Yields an `Option` because `buf` may or may not actually be parseable.
|
/// Yields an `Option` because `buf` may or may not actually be parseable.
|
||||||
///
|
///
|
||||||
/// # Examples
|
/// # Examples
|
||||||
///
|
///
|
||||||
/// ```rust
|
/// ```rust
|
||||||
/// let digits = [49,50,51,52,53,54,55,56,57];
|
/// let digits = [49,50,51,52,53,54,55,56,57];
|
||||||
/// let base = 10;
|
/// let base = 10;
|
||||||
/// let num = std::i64::from_str_radix(foo, 10);
|
/// let num = std::i64::parse_bytes(digits, base);
|
||||||
/// ```
|
/// ```
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn parse_bytes(buf: &[u8], radix: uint) -> Option<$T> {
|
pub fn parse_bytes(buf: &[u8], radix: uint) -> Option<$T> {
|
||||||
|
@ -153,7 +153,7 @@ impl Int for $T {}
|
|||||||
/// Yields an `Option` because `buf` may or may not actually be parseable.
|
/// Yields an `Option` because `buf` may or may not actually be parseable.
|
||||||
///
|
///
|
||||||
/// # Examples
|
/// # Examples
|
||||||
///
|
///
|
||||||
/// ```rust
|
/// ```rust
|
||||||
/// let digits = [49,50,51,52,53,54,55,56,57];
|
/// let digits = [49,50,51,52,53,54,55,56,57];
|
||||||
/// let base = 10;
|
/// let base = 10;
|
||||||
|
Loading…
Reference in New Issue
Block a user