Merge pull request #370 from zeenix/fix-typo

Fix a small typo in docs
This commit is contained in:
Eric Huss 2020-01-19 13:26:06 -08:00 committed by GitHub
commit f022d042dd

View file

@ -28,7 +28,7 @@ use std::collections::{btree_map, BTreeMap};
#[cfg(feature = "preserve_order")] #[cfg(feature = "preserve_order")]
use indexmap::{self, IndexMap}; use indexmap::{self, IndexMap};
/// Represents a JSON key/value type. /// Represents a TOML key/value type.
pub struct Map<K, V> { pub struct Map<K, V> {
map: MapImpl<K, V>, map: MapImpl<K, V>,
} }