mirror of
https://github.com/tokio-rs/axum.git
synced 2026-08-15 00:00:20 +02:00
remove path::de "'any'" unneeded single quotes (#926)
* fix `route` module clippy warning * remove `path::de` `"'any'"` unneeded singgle quotes,changes to `"any"` Co-authored-by: zys864 <[email protected]>
This commit is contained in:
@@ -56,7 +56,7 @@ impl<'de> PathDeserializer<'de> {
|
||||
impl<'de> Deserializer<'de> for PathDeserializer<'de> {
|
||||
type Error = PathDeserializationError;
|
||||
|
||||
unsupported_type!(deserialize_any, "'any'");
|
||||
unsupported_type!(deserialize_any, "any");
|
||||
unsupported_type!(deserialize_bytes, "bytes");
|
||||
unsupported_type!(deserialize_option, "Option<T>");
|
||||
unsupported_type!(deserialize_identifier, "identifier");
|
||||
|
||||
Reference in New Issue
Block a user