Skip to content

Commit 0966ee5

Browse files
committed
auto merge of #13651 : ryantm/rust/master, r=brson
2 parents c03d658 + 0b6a438 commit 0966ee5

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/libstd/cast.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
1+
// Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
22
// file at the top-level directory of this distribution and at
33
// http://rust-lang.org/COPYRIGHT.
44
//
@@ -28,8 +28,7 @@ pub unsafe fn transmute_copy<T, U>(src: &T) -> U {
2828
* Move a thing into the void
2929
*
3030
* The forget function will take ownership of the provided value but neglect
31-
* to run any required cleanup or memory-management operations on it. This
32-
* can be used for various acts of magick.
31+
* to run any required cleanup or memory-management operations on it.
3332
*/
3433
#[inline]
3534
pub unsafe fn forget<T>(thing: T) { intrinsics::forget(thing); }

0 commit comments

Comments
 (0)