Merge pull request #370 from zeenix/fix-typo

Fix a small typo in docs
master
Eric Huss 2020-01-19 13:26:06 -08:00 committed by GitHub
commit f60e342342
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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