Skip to content

Commit a14c34d

Browse files
committed
Removed trailing whitespace in on line 242 in int_macros.rs and on line 156 in uint_macros.rs
1 parent f197e69 commit a14c34d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/libstd/num/int_macros.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -239,11 +239,11 @@ impl Primitive for $T {}
239239
/// Yields an `Option` because `buf` may or may not actually be parseable.
240240
///
241241
/// # Examples
242-
///
242+
///
243243
/// ```rust
244244
/// let digits = [49,50,51,52,53,54,55,56,57];
245245
/// let base = 10;
246-
/// let num = std::i64::from_str_radix(foo, 10);
246+
/// let num = std::i64::parse_bytes(digits, base);
247247
/// ```
248248
#[inline]
249249
pub fn parse_bytes(buf: &[u8], radix: uint) -> Option<$T> {

src/libstd/num/uint_macros.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ impl Int for $T {}
153153
/// Yields an `Option` because `buf` may or may not actually be parseable.
154154
///
155155
/// # Examples
156-
///
156+
///
157157
/// ```rust
158158
/// let digits = [49,50,51,52,53,54,55,56,57];
159159
/// let base = 10;

0 commit comments

Comments
 (0)