diff options
| author | Tshepang Lekhonkhobe <tshepang@gmail.com> | 2015-08-19 19:45:31 +0200 |
|---|---|---|
| committer | Tshepang Lekhonkhobe <tshepang@gmail.com> | 2015-08-19 19:45:31 +0200 |
| commit | 0eb33fb03f86f8888f6c5f2061d59d854321951c (patch) | |
| tree | c8f450b0b3039fd90844fc0fd09a4fdd79f3f389 /src/libcore | |
| parent | aca2057ed5fb7af3f8905b2bc01f72fa001c35c8 (diff) | |
| download | rust-0eb33fb03f86f8888f6c5f2061d59d854321951c.tar.gz rust-0eb33fb03f86f8888f6c5f2061d59d854321951c.zip | |
make these parameters follow idiom
Diffstat (limited to 'src/libcore')
| -rw-r--r-- | src/libcore/intrinsics.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/intrinsics.rs b/src/libcore/intrinsics.rs index 5cbca1ba4c6..25d281b6db5 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<T,U>(e: T) -> U; + pub fn transmute<T, U>(e: T) -> U; /// Gives the address for the return value of the enclosing function. /// |
