indicate from_str_radix is code

This commit is contained in:
FuGangqiang
2015-03-07 18:03:38 +08:00
parent 270a677d4d
commit ae7dce674e

View File

@@ -1517,7 +1517,7 @@ pub trait FromStrRadix {
fn from_str_radix(str: &str, radix: u32) -> Result<Self, Self::Err>; fn from_str_radix(str: &str, radix: u32) -> Result<Self, Self::Err>;
} }
/// A utility function that just calls FromStrRadix::from_str_radix. /// A utility function that just calls `FromStrRadix::from_str_radix`.
#[unstable(feature = "core", reason = "needs reevaluation")] #[unstable(feature = "core", reason = "needs reevaluation")]
pub fn from_str_radix<T: FromStrRadix>(str: &str, radix: u32) pub fn from_str_radix<T: FromStrRadix>(str: &str, radix: u32)
-> Result<T, T::Err> { -> Result<T, T::Err> {