diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/utils.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utils.rs b/src/utils.rs index 84acb21..f0c1a24 100644 --- a/src/utils.rs +++ b/src/utils.rs @@ -677,7 +677,7 @@ pub mod serde { /// Serializes to a `Vec<(K, V)>`. /// /// Useful for [`std::collections::HashMap`] with a non-string key, - /// which is unsupported by [`serde_json`]. + /// which is unsupported by [`serde_json`](https://docs.rs/serde_json/). pub fn serialize_to_vec_tuple< 'a, S: serde::Serializer, @@ -695,7 +695,7 @@ pub mod serde { /// Deserializes from a `Vec<(K, V)>`. /// /// Useful for [`std::collections::HashMap`] with a non-string key, - /// which is unsupported by [`serde_json`]. + /// which is unsupported by [`serde_json`](https://docs.rs/serde_json/). pub fn deserialize_from_vec_tuple< 'de, D: serde::Deserializer<'de>, |
