about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2023-10-06 21:17:49 +0200
committerGitHub <noreply@github.com>2023-10-06 21:17:49 +0200
commit0ed398eaa415eae32df10839077e39bece8bddf0 (patch)
treed26bcb07217e4822d1a704088f43e4ab78eacbb2
parent8ebed4cc1a2e21844c58f3b0bfbad1a069bb09b6 (diff)
parentfaacd55741785b17d6bdbe3f3319ee6e3079ccab (diff)
downloadrust-0ed398eaa415eae32df10839077e39bece8bddf0.tar.gz
rust-0ed398eaa415eae32df10839077e39bece8bddf0.zip
Rollup merge of #116423 - eltociear:patch-22, r=flip1995
Fix typo in attrs.rs

documenation -> documentation
-rw-r--r--clippy_lints/src/attrs.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/clippy_lints/src/attrs.rs b/clippy_lints/src/attrs.rs
index 0546807bac4..db01ddbde04 100644
--- a/clippy_lints/src/attrs.rs
+++ b/clippy_lints/src/attrs.rs
@@ -183,7 +183,7 @@ declare_clippy_lint! {
 
 declare_clippy_lint! {
     /// ### What it does
-    /// Checks for empty lines after documenation comments.
+    /// Checks for empty lines after documentation comments.
     ///
     /// ### Why is this bad?
     /// The documentation comment was most likely meant to be an inner attribute or regular comment.
@@ -795,7 +795,7 @@ impl EarlyLintPass for EarlyAttributes {
 
 /// Check for empty lines after outer attributes.
 ///
-/// Attributes and documenation comments are both considered outer attributes
+/// Attributes and documentation comments are both considered outer attributes
 /// by the AST. However, the average user likely considers them to be different.
 /// Checking for empty lines after each of these attributes is split into two different
 /// lints but can share the same logic.