Skip to content

Commit 7677f5f

Browse files
authored
Fix typo in ops::Drop docs
1 parent c5e344f commit 7677f5f

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)