Skip to content

Commit dec2687

Browse files
authored
Rollup merge of #86955 - Swordelf2:patch-1, r=cuviper
Fix typo in `ops::Drop` docs
2 parents 885d00c + 7677f5f commit dec2687

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/core/src/ops/drop.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
/// This destructor consists of two components:
1212
/// - A call to `Drop::drop` for that value, if this special `Drop` trait is implemented for its type.
1313
/// - The automatically generated "drop glue" which recursively calls the destructors
14-
/// of the all fields of this value.
14+
/// of all the fields of this value.
1515
///
1616
/// As Rust automatically calls the destructors of all contained fields,
1717
/// you don't have to implement `Drop` in most cases. But there are some cases where

0 commit comments

Comments
 (0)