diff options
author | Zeeshan Ali <zeeshanak@gnome.org> | 2020-01-19 21:01:22 +0100 |
---|---|---|
committer | Zeeshan Ali <zeeshanak@gnome.org> | 2020-01-19 21:01:22 +0100 |
commit | 87fcd656a6720b88323ee4a932c64d6b08676cf4 (patch) | |
tree | 9b766e09c563a485d50388c99b202f1233a6e994 /src | |
parent | 436acbd31d8cdc4c8795c5af16710ce6a2098533 (diff) | |
download | milf-rs-87fcd656a6720b88323ee4a932c64d6b08676cf4.tar.gz milf-rs-87fcd656a6720b88323ee4a932c64d6b08676cf4.zip |
Fix a small typo in docs
Diffstat (limited to 'src')
-rw-r--r-- | src/map.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -28,7 +28,7 @@ use std::collections::{btree_map, BTreeMap}; #[cfg(feature = "preserve_order")] use indexmap::{self, IndexMap}; -/// Represents a JSON key/value type. +/// Represents a TOML key/value type. pub struct Map<K, V> { map: MapImpl<K, V>, } |