Fix a typo in `axum::extract::rejection::FailedToDeserializeQueryString` documentation (#2009)

This commit is contained in:
Jerry Wang 2023-05-19 01:37:21 -07:00 committed by GitHub
parent 7208cdf795
commit 59d6a7b31a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ define_rejection! {
#[status = BAD_REQUEST]
#[body = "Failed to deserialize query string"]
/// Rejection type used if the [`Query`](super::Query) extractor is unable to
/// deserialize the form into the target type.
/// deserialize the query string into the target type.
pub struct FailedToDeserializeQueryString(Error);
}