Skip to content

Commit

Permalink
Rollup merge of #86955 - Swordelf2:patch-1, r=cuviper
Browse files Browse the repository at this point in the history
Fix typo in `ops::Drop` docs
  • Loading branch information
JohnTitor authored Jul 8, 2021
2 parents 59b4f88 + 7677f5f commit 0f37050
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/core/src/ops/drop.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 0f37050

Please sign in to comment.