From 49a9740b09448ac903a2a1a9b73f09e4ca7fc783 Mon Sep 17 00:00:00 2001 From: Max Baumann Date: Wed, 30 Mar 2022 13:08:39 +0200 Subject: [PATCH] update description Co-authored-by: giraffate --- clippy_lints/src/empty_structs_with_brackets.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clippy_lints/src/empty_structs_with_brackets.rs b/clippy_lints/src/empty_structs_with_brackets.rs index 0077cc5364fc..15c06126fd5d 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.