about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2023-01-02 20:14:21 +0000
committerbors <bors@rust-lang.org>2023-01-02 20:14:21 +0000
commit3006c7cd4fdf1f72d2b3707d63be4198f4e76781 (patch)
treeacbc28e7c647ca65072e5faf31ef9b0771464a98
parenta85e480dd15bca2231550a936398f30f97eb5d53 (diff)
parentf53c6e2f15a54dee84cbf20228a54861fa66bf09 (diff)
downloadrust-3006c7cd4fdf1f72d2b3707d63be4198f4e76781.tar.gz
rust-3006c7cd4fdf1f72d2b3707d63be4198f4e76781.zip
Auto merge of #10146 - Nilstrieb:💀, r=llogiq
Correct Gankra's name in the linkedlist lint

changelog: [`linkedlist`]: Update description
-rw-r--r--clippy_lints/src/types/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/types/mod.rs b/clippy_lints/src/types/mod.rs
index 20978e81dc5..b0d49d26856 100644
--- a/clippy_lints/src/types/mod.rs
+++ b/clippy_lints/src/types/mod.rs
@@ -127,7 +127,7 @@ declare_clippy_lint! {
     /// `Vec` or a `VecDeque` (formerly called `RingBuf`).
     ///
     /// ### Why is this bad?
-    /// Gankro says:
+    /// Gankra says:
     ///
     /// > The TL;DR of `LinkedList` is that it's built on a massive amount of
     /// pointers and indirection.