about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--clippy_lints/src/empty_structs_with_brackets.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/empty_structs_with_brackets.rs b/clippy_lints/src/empty_structs_with_brackets.rs
index 0077cc5364f..15c06126fd5 100644
--- a/clippy_lints/src/empty_structs_with_brackets.rs
+++ b/clippy_lints/src/empty_structs_with_brackets.rs
@@ -8,7 +8,7 @@ use rustc_span::Span;
 
 declare_clippy_lint! {
     /// ### What it does
-    /// Finds structs without fields ("unit-like structs") that are declared with brackets.
+    /// Finds structs without fields (a so-called "empty struct") that are declared with brackets.
     ///
     /// ### Why is this bad?
     /// Empty brackets after a struct declaration can be omitted.