From 9faaea4f4e84d01432ce938de35b88c7a93b1c02 Mon Sep 17 00:00:00 2001 From: Rob Wagner Date: Mon, 23 Oct 2023 21:08:00 -0400 Subject: [PATCH] Minor code cleanup --- src/headers.rs | 3 ++- src/lib.rs | 1 - 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/headers.rs b/src/headers.rs index 34c5a7a..0a1428d 100644 --- a/src/headers.rs +++ b/src/headers.rs @@ -57,7 +57,8 @@ pub const HX_RESELECT: &str = "HX-Reselect"; /// Can be set as a request or response header. /// -/// In a request, it contains the `id of the element that triggered the request. +/// In a request, it contains the `id` of the element that triggered the +/// request. /// /// In a response, it can be used to trigger client-side events. /// diff --git a/src/lib.rs b/src/lib.rs index 06f6cbd..c052717 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,3 @@ -#![warn(clippy::all, clippy::pedantic, clippy::nursery, clippy::cargo)] #![doc = include_str!("../README.md")] #![forbid(unsafe_code)] pub mod extractors;