Skip to content

Commit

Permalink
indicate from_str_radix is code
Browse files Browse the repository at this point in the history
  • Loading branch information
FuGangqiang committed Mar 7, 2015
1 parent 270a677 commit ae7dce6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libcore/num/mod.rs
Expand Up @@ -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> {
Expand Down

0 comments on commit ae7dce6

Please sign in to comment.