Fix a small typo in docs

This commit is contained in:
Zeeshan Ali 2020-01-19 21:01:22 +01:00
parent 2d0406e127
commit 66728e147f

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>,
} }