about summary refs log tree commit diff
diff options
context:
space:
mode:
authorshandongbinzhou <shandongbinzhou@outlook.com>2024-03-29 16:17:07 +0800
committershandongbinzhou <shandongbinzhou@outlook.com>2024-03-29 16:17:07 +0800
commit7aac504e4160c9524412af5f83eeb111918cc6ab (patch)
tree3420de0e429de568ea29970dfb5327b3c6bd221d
parent124e68bef8be61aa151ff33bea325c832728146f (diff)
downloadrust-7aac504e4160c9524412af5f83eeb111918cc6ab.tar.gz
rust-7aac504e4160c9524412af5f83eeb111918cc6ab.zip
Fix typo in comment
Signed-off-by: shandongbinzhou <shandongbinzhou@outlook.com>
-rw-r--r--clippy_lints/src/serde_api.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/serde_api.rs b/clippy_lints/src/serde_api.rs
index b4278d879e5..f1ec91d7aff 100644
--- a/clippy_lints/src/serde_api.rs
+++ b/clippy_lints/src/serde_api.rs
@@ -9,7 +9,7 @@ declare_clippy_lint! {
     /// Checks for misuses of the serde API.
     ///
     /// ### Why is this bad?
-    /// Serde is very finnicky about how its API should be
+    /// Serde is very finicky about how its API should be
     /// used, but the type system can't be used to enforce it (yet?).
     ///
     /// ### Example