Skip to content

Commit

Permalink
Removed trailing whitespace in on line 242 in int_macros.rs and on li…
Browse files Browse the repository at this point in the history
…ne 156 in uint_macros.rs
  • Loading branch information
jacob-hegna committed Apr 23, 2014
1 parent f197e69 commit a14c34d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/libstd/num/int_macros.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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> {
Expand Down
2 changes: 1 addition & 1 deletion src/libstd/num/uint_macros.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit a14c34d

Please sign in to comment.