about summary refs log tree commit diff
path: root/src/libcore/ops
diff options
context:
space:
mode:
authorAnders Pitman <tapitman11@gmail.com>2018-04-01 16:19:42 -0700
committerGitHub <noreply@github.com>2018-04-01 16:19:42 -0700
commitda9e18b3dbf2edee36bdcc274b771493a4d4afc1 (patch)
treea3ac5a6607212074fdf3458babdf5e6722062a26 /src/libcore/ops
parent06fa27d7c84a21af8449e06f3c50b243c4d5a7ad (diff)
downloadrust-da9e18b3dbf2edee36bdcc274b771493a4d4afc1.tar.gz
rust-da9e18b3dbf2edee36bdcc274b771493a4d4afc1.zip
Update drop.rs
Diffstat (limited to 'src/libcore/ops')
-rw-r--r--src/libcore/ops/drop.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/ops/drop.rs b/src/libcore/ops/drop.rs
index 70ab7b2f3b7..474f7e34c34 100644
--- a/src/libcore/ops/drop.rs
+++ b/src/libcore/ops/drop.rs
@@ -95,7 +95,7 @@
 pub trait Drop {
     /// Executes the destructor for this type.
     ///
-    /// This method is called implilcitly when the value goes out of scope,
+    /// This method is called implicitly when the value goes out of scope,
     /// and cannot be called explicitly (this is compiler error [E0040]).
     /// However, the [`std::mem::drop`] function in the prelude can be
     /// used to call the argument's `Drop` implementation.