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
This commit is contained in:
bors 2024-03-25 16:19:00 +00:00
commit be27f68d26

View File

@ -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