From ae7dce674e52f43d064f90b8415311406a9714d5 Mon Sep 17 00:00:00 2001 From: FuGangqiang Date: Sat, 7 Mar 2015 18:03:38 +0800 Subject: [PATCH] indicate from_str_radix is code --- src/libcore/num/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcore/num/mod.rs b/src/libcore/num/mod.rs index 76edec80896..752eca797bd 100644 --- a/src/libcore/num/mod.rs +++ b/src/libcore/num/mod.rs @@ -1517,7 +1517,7 @@ pub trait FromStrRadix { fn from_str_radix(str: &str, radix: u32) -> Result; } -/// 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(str: &str, radix: u32) -> Result {