From 21e9b47dceb2add5c0fd8052e3c8244668f7cd23 Mon Sep 17 00:00:00 2001 From: Valentin Obst Date: Tue, 22 Oct 2024 11:07:52 +0200 Subject: [PATCH] lints/doc: fix typo in docs of `too_long_first_doc_paragraph` --- clippy_lints/src/doc/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clippy_lints/src/doc/mod.rs b/clippy_lints/src/doc/mod.rs index 89c6a4e08dc4..8800cdb549c2 100644 --- a/clippy_lints/src/doc/mod.rs +++ b/clippy_lints/src/doc/mod.rs @@ -430,7 +430,7 @@ declare_clippy_lint! { /// Checks if the first line in the documentation of items listed in module page is too long. /// /// ### Why is this bad? - /// Documentation will show the first paragraph of the doscstring in the summary page of a + /// Documentation will show the first paragraph of the docstring in the summary page of a /// module, so having a nice, short summary in the first paragraph is part of writing good docs. /// /// ### Example