mirror of
https://github.com/tokio-rs/axum.git
synced 2024-11-22 15:17:18 +01: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 <zys864@gmail.com>
This commit is contained in:
parent
f13eab893a
commit
d177a65f24
1 changed files with 1 additions and 1 deletions
|
@ -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");
|
||||
|
|
Loading…
Reference in a new issue