Skip to content

Commit 4052d2b

Browse files
committed
---
yaml --- r: 111546 b: refs/heads/master c: a14c34d h: refs/heads/master v: v3
1 parent 5266d05 commit 4052d2b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: f197e695ca68c488bce4289d2e79177ecb093a42
2+
refs/heads/master: a14c34d670fc76ccc025d5f7ae89ccbb811560c6
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: b5dd3f05fe95168b5569d0f519636149479eb6ac
55
refs/heads/try: 38201d7c6bf0c32b0e5bdc8ecd63976ebc1b3a4c

trunk/src/libstd/num/int_macros.rs

Lines changed: 2 additions & 2 deletions
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> {

trunk/src/libstd/num/uint_macros.rs

Lines changed: 1 addition & 1 deletion
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)