Skip to content

Commit

Permalink
docs(toml): Update map documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
epage committed Jan 23, 2023
1 parent 709dd35 commit a4fd0b1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions crates/toml/src/map.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

//! A map of String to toml::Value.
//! A map of `String` to [Value].
//!
//! By default the map is backed by a [`BTreeMap`]. Enable the `preserve_order`
//! feature of toml-rs to use [`LinkedHashMap`] instead.
//! feature of toml-rs to use [`IndexMap`] instead.
//!
//! [`BTreeMap`]: https://doc.rust-lang.org/std/collections/struct.BTreeMap.html
//! [`LinkedHashMap`]: https://docs.rs/linked-hash-map/*/linked_hash_map/struct.LinkedHashMap.html
//! [`IndexMap`]: https://docs.rs/indexmap

use crate::value::Value;
use serde::{de, ser};
Expand Down

0 comments on commit a4fd0b1

Please sign in to comment.