about summary refs log tree commit diff
path: root/src/libcore/ops/drop.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/libcore/ops/drop.rs')
-rw-r--r--src/libcore/ops/drop.rs12
1 files changed, 1 insertions, 11 deletions
diff --git a/src/libcore/ops/drop.rs b/src/libcore/ops/drop.rs
index 474f7e34c34..eae63ea2390 100644
--- a/src/libcore/ops/drop.rs
+++ b/src/libcore/ops/drop.rs
@@ -1,13 +1,3 @@
-// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
-// file at the top-level directory of this distribution and at
-// http://rust-lang.org/COPYRIGHT.
-//
-// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
-// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
-// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
-// option. This file may not be copied, modified, or distributed
-// except according to those terms.
-
 /// Used to run some code when a value goes out of scope.
 /// This is sometimes called a 'destructor'.
 ///
@@ -21,7 +11,7 @@
 /// Refer to [the chapter on `Drop` in *The Rust Programming Language*][book]
 /// for some more elaboration.
 ///
-/// [book]: ../../book/second-edition/ch15-03-drop.html
+/// [book]: ../../book/ch15-03-drop.html
 ///
 /// # Examples
 ///