From 3bb0bde48fa72bea42abe23d23d0640f9f2b9387 Mon Sep 17 00:00:00 2001 From: Justus Adam Date: Tue, 30 Jan 2024 10:16:21 -0500 Subject: [PATCH] Small change to entries vs keys --- crates/toml/src/table.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/crates/toml/src/table.rs b/crates/toml/src/table.rs index 1004a7d0..3814a45c 100644 --- a/crates/toml/src/table.rs +++ b/crates/toml/src/table.rs @@ -7,10 +7,10 @@ use crate::map::Map; use crate::Value; /// Type representing a TOML table, payload of the `Value::Table` variant. -/// By default it is backed by an map storing keys in -/// [lexicographic order](https://doc.rust-lang.org/std/primitive.str.html#impl-Ord-for-str). -/// Enable the `preserve_order` feature to use a backing map that stores -/// entries in the order they appear in the source file. +/// By default it is backed by an map storing entries in +/// [lexicographic order](https://doc.rust-lang.org/std/primitive.str.html#impl-Ord-for-str) +/// of the keys. Enable the `preserve_order` feature to use a backing map +/// that stores entries in the order they appear in the source file. pub type Table = Map; impl Table {