Rollup merge of #23144 - FuGangqiang:doc_err, r=alexcrichton

in the [doc page](http://doc.rust-lang.org/std/num/index.html), `FromStrRadix::from_str_radix` is not quoted.
This commit is contained in:
Manish Goregaokar 2015-03-09 16:30:31 +05:30
commit 811c575b3c

View File

@ -1517,7 +1517,7 @@ pub trait FromStrRadix {
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")]
pub fn from_str_radix<T: FromStrRadix>(str: &str, radix: u32)
-> Result<T, T::Err> {