From a4ec372a1e8149df2e942b561915c5f08035055c Mon Sep 17 00:00:00 2001 From: Wei-Ming Yang Date: Fri, 8 May 2015 20:44:11 +0800 Subject: [PATCH] fixed a mistake --- src/libcore/marker.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcore/marker.rs b/src/libcore/marker.rs index 04839b12ac8..1bd0b3638c6 100644 --- a/src/libcore/marker.rs +++ b/src/libcore/marker.rs @@ -313,7 +313,7 @@ macro_rules! impls{ /// mismatches by enforcing types in the method implementations: /// /// ``` -/// # trait ResType { fn foo(&self); }; +/// # trait ResType { fn foo(&self); } /// # struct ParamType; /// # mod foreign_lib { /// # pub fn new(_: usize) -> *mut () { 42 as *mut () }