Skip to content

Commit a4fd0b1

Browse files
committed
docs(toml): Update map documentation
1 parent 709dd35 commit a4fd0b1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

crates/toml/src/map.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@
66
// option. This file may not be copied, modified, or distributed
77
// except according to those terms.
88

9-
//! A map of String to toml::Value.
9+
//! A map of `String` to [Value].
1010
//!
1111
//! By default the map is backed by a [`BTreeMap`]. Enable the `preserve_order`
12-
//! feature of toml-rs to use [`LinkedHashMap`] instead.
12+
//! feature of toml-rs to use [`IndexMap`] instead.
1313
//!
1414
//! [`BTreeMap`]: https://doc.rust-lang.org/std/collections/struct.BTreeMap.html
15-
//! [`LinkedHashMap`]: https://docs.rs/linked-hash-map/*/linked_hash_map/struct.LinkedHashMap.html
15+
//! [`IndexMap`]: https://docs.rs/indexmap
1616
1717
use crate::value::Value;
1818
use serde::{de, ser};

0 commit comments

Comments
 (0)