about summary refs log tree commit diff
path: root/src/libcore
diff options
context:
space:
mode:
authorSteve Klabnik <steve@steveklabnik.com>2015-09-17 17:06:56 -0400
committerSteve Klabnik <steve@steveklabnik.com>2015-09-17 17:06:56 -0400
commit5faff5dbde23b1bb928a30c2b3b9d2dd5ec3a261 (patch)
tree5fc11444c74711c43c2e7c708a68d9d8796c0bb6 /src/libcore
parent7a5cd3c27436b17481f53ac178e467cd61d2fc04 (diff)
parent25cc001c194ac9a1134a30a99ad721695c3c0e8c (diff)
downloadrust-5faff5dbde23b1bb928a30c2b3b9d2dd5ec3a261.tar.gz
rust-5faff5dbde23b1bb928a30c2b3b9d2dd5ec3a261.zip
Rollup merge of #28474 - tshepang:repetition, r=steveklabnik
It's clear it's the one being documented
Diffstat (limited to 'src/libcore')
-rw-r--r--src/libcore/ops.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/ops.rs b/src/libcore/ops.rs
index 07de4d0761b..5f0eb63edbc 100644
--- a/src/libcore/ops.rs
+++ b/src/libcore/ops.rs
@@ -94,7 +94,7 @@ use fmt;
 #[lang = "drop"]
 #[stable(feature = "rust1", since = "1.0.0")]
 pub trait Drop {
-    /// The `drop` method, called when the value goes out of scope.
+    /// A method called when the value goes out of scope.
     #[stable(feature = "rust1", since = "1.0.0")]
     fn drop(&mut self);
 }