From 0eb33fb03f86f8888f6c5f2061d59d854321951c Mon Sep 17 00:00:00 2001 From: Tshepang Lekhonkhobe Date: Wed, 19 Aug 2015 19:45:31 +0200 Subject: [PATCH] make these parameters follow idiom --- src/libcore/intrinsics.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcore/intrinsics.rs b/src/libcore/intrinsics.rs index 5cbca1ba4c68..25d281b6db5a 100644 --- a/src/libcore/intrinsics.rs +++ b/src/libcore/intrinsics.rs @@ -251,7 +251,7 @@ extern "rust-intrinsic" { /// assert!(v == [76]); /// ``` #[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. ///