about summary refs log tree commit diff
path: root/clippy_lints/src/main_recursion.rs
diff options
context:
space:
mode:
Diffstat (limited to 'clippy_lints/src/main_recursion.rs')
-rw-r--r--clippy_lints/src/main_recursion.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/main_recursion.rs b/clippy_lints/src/main_recursion.rs
index fad8fa467d4..20333c150e3 100644
--- a/clippy_lints/src/main_recursion.rs
+++ b/clippy_lints/src/main_recursion.rs
@@ -12,7 +12,7 @@ declare_clippy_lint! {
     ///
     /// ### Why is this bad?
     /// Apart from special setups (which we could detect following attributes like #![no_std]),
-    /// recursing into main() seems like an unintuitive antipattern we should be able to detect.
+    /// recursing into main() seems like an unintuitive anti-pattern we should be able to detect.
     ///
     /// ### Example
     /// ```no_run