This commit is contained in:
Yechan Bae 2021-09-23 06:49:23 -04:00
parent d7a9ec2c50
commit 6458630e1a

View file

@ -15,7 +15,7 @@ declare_clippy_lint! {
/// Sending the struct to another thread and drops it there will also drop
/// the field in the new thread. This effectively changes the ownership of
/// the field type to the new thread and creates a soundness issue by
/// breaking breaks the non-`Send` invariant.
/// breaking the non-`Send` invariant.
///
/// ### Known Problems
/// Data structures that contain raw pointers may cause false positives.