about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSamuel Moelius <35515885+smoelius@users.noreply.github.com>2023-08-25 19:50:51 -0400
committerGitHub <noreply@github.com>2023-08-25 19:50:51 -0400
commit7ff87163e0630a314af5a3cd091f8fe0616bcc96 (patch)
tree80c025316e2dc96c86d83ad54f63d7a364ddc5d8
parent706c48b62afb036d34dfa3d6119846edb0afda63 (diff)
downloadrust-7ff87163e0630a314af5a3cd091f8fe0616bcc96.tar.gz
rust-7ff87163e0630a314af5a3cd091f8fe0616bcc96.zip
Typo
-rw-r--r--clippy_lints/src/doc.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/doc.rs b/clippy_lints/src/doc.rs
index e29ab634c97..093abdb3e40 100644
--- a/clippy_lints/src/doc.rs
+++ b/clippy_lints/src/doc.rs
@@ -508,7 +508,7 @@ struct DocHeaders {
 
 fn check_attrs(cx: &LateContext<'_>, valid_idents: &FxHashSet<String>, attrs: &[Attribute]) -> Option<DocHeaders> {
     /// We don't want the parser to choke on intra doc links. Since we don't
-    /// actually care about rendering them, just pretend that all broken links are
+    /// actually care about rendering them, just pretend that all broken links
     /// point to a fake address.
     #[expect(clippy::unnecessary_wraps)] // we're following a type signature
     fn fake_broken_link_callback<'a>(_: BrokenLink<'_>) -> Option<(CowStr<'a>, CowStr<'a>)> {