diff options
| author | Steve Klabnik <steve@steveklabnik.com> | 2015-08-22 19:15:42 -0400 |
|---|---|---|
| committer | Steve Klabnik <steve@steveklabnik.com> | 2015-08-22 19:15:42 -0400 |
| commit | de7a3d32accc792e2990f9bdc01fcf4e525ecfc1 (patch) | |
| tree | 8e5bc176522e3703d3a2c631f321ee9f079d8a8c /src/libcore | |
| parent | fb06272ed3cf91ef3d5428621a46750106293f98 (diff) | |
| parent | 0eb33fb03f86f8888f6c5f2061d59d854321951c (diff) | |
| download | rust-de7a3d32accc792e2990f9bdc01fcf4e525ecfc1.tar.gz rust-de7a3d32accc792e2990f9bdc01fcf4e525ecfc1.zip | |
Rollup merge of #27904 - tshepang:nit, r=nikomatsakis
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 998b07f1f91..ece285a8313 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<T,U>(e: T) -> U; + pub fn transmute<T, U>(e: T) -> U; /// Gives the address for the return value of the enclosing function. /// |
