From 7677f5fe31fc3c701096c8071f458480951a9a5c Mon Sep 17 00:00:00 2001 From: Swordelf2 Date: Wed, 7 Jul 2021 22:26:32 +0300 Subject: [PATCH] Fix typo in `ops::Drop` docs --- 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 f4b1ec377d413..aa654aa5570ee 100644 --- a/library/core/src/ops/drop.rs +++ b/library/core/src/ops/drop.rs @@ -11,7 +11,7 @@ /// This destructor consists of two components: /// - A call to `Drop::drop` for that value, if this special `Drop` trait is implemented for its type. /// - The automatically generated "drop glue" which recursively calls the destructors -/// of the all fields of this value. +/// of all the fields of this value. /// /// As Rust automatically calls the destructors of all contained fields, /// you don't have to implement `Drop` in most cases. But there are some cases where