From 46d2a96facee034beed1183d65ce644cca1abc6a Mon Sep 17 00:00:00 2001 From: Mark Lodato Date: Wed, 14 Apr 2021 16:05:56 -0400 Subject: [PATCH] Fix small typo in Drop documentation --- library/core/src/ops/drop.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/core/src/ops/drop.rs b/library/core/src/ops/drop.rs index ce7d1c3d06d..f4b1ec377d4 100644 --- a/library/core/src/ops/drop.rs +++ b/library/core/src/ops/drop.rs @@ -78,7 +78,7 @@ /// /// In other words, if you tried to explicitly call `Drop::drop` in the above example, you'd get a compiler error. /// -/// If you'd like explicitly call the destructor of a value, [`mem::drop`] can be used instead. +/// If you'd like to explicitly call the destructor of a value, [`mem::drop`] can be used instead. /// /// [`mem::drop`]: drop ///