We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c03d658 + 0b6a438 commit 0966ee5Copy full SHA for 0966ee5
src/libstd/cast.rs
@@ -1,4 +1,4 @@
1
-// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
+// Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
2
// file at the top-level directory of this distribution and at
3
// http://rust-lang.org/COPYRIGHT.
4
//
@@ -28,8 +28,7 @@ pub unsafe fn transmute_copy<T, U>(src: &T) -> U {
28
* Move a thing into the void
29
*
30
* 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.
+ * to run any required cleanup or memory-management operations on it.
33
*/
34
#[inline]
35
pub unsafe fn forget<T>(thing: T) { intrinsics::forget(thing); }
0 commit comments