We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
ops::Drop
1 parent c5e344f commit 7677f5fCopy full SHA for 7677f5f
library/core/src/ops/drop.rs
@@ -11,7 +11,7 @@
11
/// This destructor consists of two components:
12
/// - A call to `Drop::drop` for that value, if this special `Drop` trait is implemented for its type.
13
/// - The automatically generated "drop glue" which recursively calls the destructors
14
-/// of the all fields of this value.
+/// of all the fields of this value.
15
///
16
/// As Rust automatically calls the destructors of all contained fields,
17
/// you don't have to implement `Drop` in most cases. But there are some cases where
0 commit comments