Removed trailing whitespace in on line 242 in int_macros.rs and on line 156 in uint_macros.rs

This commit is contained in:
Jacob Hegna 2014-04-22 19:47:57 -05:00
parent f197e695ca
commit a14c34d670
2 changed files with 3 additions and 3 deletions

View File

@ -239,11 +239,11 @@ impl Primitive for $T {}
/// Yields an `Option` because `buf` may or may not actually be parseable.
///
/// # Examples
///
///
/// ```rust
/// let digits = [49,50,51,52,53,54,55,56,57];
/// let base = 10;
/// let num = std::i64::from_str_radix(foo, 10);
/// let num = std::i64::parse_bytes(digits, base);
/// ```
#[inline]
pub fn parse_bytes(buf: &[u8], radix: uint) -> Option<$T> {

View File

@ -153,7 +153,7 @@ impl Int for $T {}
/// Yields an `Option` because `buf` may or may not actually be parseable.
///
/// # Examples
///
///
/// ```rust
/// let digits = [49,50,51,52,53,54,55,56,57];
/// let base = 10;