We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 885d00c + 7677f5f commit dec2687Copy full SHA for dec2687
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