aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZeeshan Ali <zeeshanak@gnome.org>2020-01-19 21:01:22 +0100
committerZeeshan Ali <zeeshanak@gnome.org>2020-01-19 21:01:22 +0100
commit87fcd656a6720b88323ee4a932c64d6b08676cf4 (patch)
tree9b766e09c563a485d50388c99b202f1233a6e994
parent436acbd31d8cdc4c8795c5af16710ce6a2098533 (diff)
downloadmilf-rs-87fcd656a6720b88323ee4a932c64d6b08676cf4.tar.gz
milf-rs-87fcd656a6720b88323ee4a932c64d6b08676cf4.zip
Fix a small typo in docs
-rw-r--r--src/map.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map.rs b/src/map.rs
index 2d47240..d130a1d 100644
--- a/src/map.rs
+++ b/src/map.rs
@@ -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>,
}