From 66728e147f4d5768c1346fb4e437c67ad7d42ba6 Mon Sep 17 00:00:00 2001 From: Zeeshan Ali Date: Sun, 19 Jan 2020 21:01:22 +0100 Subject: [PATCH] Fix a small typo in docs --- src/map.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 { map: MapImpl, }