aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Huss <eric@huss.org>2020-01-19 13:26:06 -0800
committerGitHub <noreply@github.com>2020-01-19 13:26:06 -0800
commitf60e3423426c7322533433f9d40e0f282a05d220 (patch)
tree9b766e09c563a485d50388c99b202f1233a6e994
parent436acbd31d8cdc4c8795c5af16710ce6a2098533 (diff)
parent87fcd656a6720b88323ee4a932c64d6b08676cf4 (diff)
downloadmilf-rs-f60e3423426c7322533433f9d40e0f282a05d220.tar.gz
milf-rs-f60e3423426c7322533433f9d40e0f282a05d220.zip
Merge pull request #370 from zeenix/fix-typo
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>,
}