From 7d740866e68f73a46045ed5eed19ce5359135b2c Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Wed, 27 Jul 2022 16:32:21 +0200 Subject: [PATCH] Fix a typo in axum_extra::extract::Query docs (#1201) --- axum-extra/src/extract/query.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/axum-extra/src/extract/query.rs b/axum-extra/src/extract/query.rs index 9f02ff57ae..e2df0e2449 100644 --- a/axum-extra/src/extract/query.rs +++ b/axum-extra/src/extract/query.rs @@ -12,7 +12,7 @@ use std::ops::Deref; /// /// `T` is expected to implement [`serde::Deserialize`]. /// -/// # Differences from `axum::extract::Form` +/// # Differences from `axum::extract::Query` /// /// This extractor uses [`serde_html_form`] under-the-hood which supports multi-value items. These /// are sent by multiple `` attributes of the same name (e.g. checkboxes) and `