about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2024-03-25 16:19:00 +0000
committerbors <bors@rust-lang.org>2024-03-25 16:19:00 +0000
commitbe27f68d26042408b705dd00bce414966000cadc (patch)
treebf54fe9b8e20b39e7a54a9f23f511dd7367b7267
parent95c62ffae9bbce793f68a6f1473e3fc24af19bdd (diff)
parente0b6f30397ba152a7bd190d98c1389383e276ba3 (diff)
downloadrust-be27f68d26042408b705dd00bce414966000cadc.tar.gz
rust-be27f68d26042408b705dd00bce414966000cadc.zip
Auto merge of #12557 - stanislav-tkach:unconditional-recursion-remove-dot, r=y21
Remove unnecessary dot in the 'unconditional recursion' lint description

I don't think such changes should be reflected in the changelog.

changelog: none
-rw-r--r--clippy_lints/src/unconditional_recursion.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/unconditional_recursion.rs b/clippy_lints/src/unconditional_recursion.rs
index d638af2b78b..52338027dea 100644
--- a/clippy_lints/src/unconditional_recursion.rs
+++ b/clippy_lints/src/unconditional_recursion.rs
@@ -23,7 +23,7 @@ declare_clippy_lint! {
     /// implementations.
     ///
     /// ### Why is this bad?
-    /// This is a hard to find infinite recursion that will crash any code.
+    /// This is a hard to find infinite recursion that will crash any code
     /// using it.
     ///
     /// ### Example