auto merge of #9900 : hatahet/rust/master, r=alexcrichton

Closes #9870
This commit is contained in:
bors 2013-10-17 02:46:24 -07:00
commit 2cb96a4eaf

View File

@ -861,7 +861,7 @@ impl_from_primitive!(f64, n.to_f64())
/// # Example
///
/// ```
/// let twenty: f32 = num::cast(0x14);
/// let twenty: f32 = num::cast(0x14).unwrap();
/// assert_eq!(twenty, 20f32);
/// ```
///