diff --git a/src/libcore/intrinsics.rs b/src/libcore/intrinsics.rs index 998b07f1f916..ece285a83135 100644 --- a/src/libcore/intrinsics.rs +++ b/src/libcore/intrinsics.rs @@ -251,7 +251,7 @@ extern "rust-intrinsic" { /// assert_eq!(array, [82, 117, 115, 116]); /// ``` #[stable(feature = "rust1", since = "1.0.0")] - pub fn transmute(e: T) -> U; + pub fn transmute(e: T) -> U; /// Gives the address for the return value of the enclosing function. ///