about summary refs log tree commit diff
diff options
context:
space:
mode:
authorYechan Bae <yechan@gatech.edu>2021-09-23 06:49:23 -0400
committerYechan Bae <yechan@gatech.edu>2021-10-01 14:04:20 -0400
commit6458630e1aad3ef325b5839f5c3af665d837fa84 (patch)
tree7824263421d43a46c43201e9a59f9da4fbb90158
parentd7a9ec2c5080dc69219e43ba8f221b4e61e47ce4 (diff)
downloadrust-6458630e1aad3ef325b5839f5c3af665d837fa84.tar.gz
rust-6458630e1aad3ef325b5839f5c3af665d837fa84.zip
typo
-rw-r--r--clippy_lints/src/non_send_field_in_send_ty.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/non_send_field_in_send_ty.rs b/clippy_lints/src/non_send_field_in_send_ty.rs
index 07b50cb8274..7b81119448f 100644
--- a/clippy_lints/src/non_send_field_in_send_ty.rs
+++ b/clippy_lints/src/non_send_field_in_send_ty.rs
@@ -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.