From ece7a6403eeba2b7777a643345da60c4c7aa5b7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?On=C3=A8?= <43485962+c-git@users.noreply.github.com> Date: Tue, 17 Dec 2024 12:14:38 -0500 Subject: [PATCH] docs: remove "a" Was a duplicate article in the sentence. Already has "the" --- crates/egui/src/util/id_type_map.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/egui/src/util/id_type_map.rs b/crates/egui/src/util/id_type_map.rs index 6e382f9917f..a7b8f18c9c3 100644 --- a/crates/egui/src/util/id_type_map.rs +++ b/crates/egui/src/util/id_type_map.rs @@ -308,7 +308,7 @@ fn from_ron_str(ron: &str) -> Option { use crate::Id; // TODO(emilk): make IdTypeMap generic over the key (`Id`), and make a library of IdTypeMap. -/// Stores values identified by an [`Id`] AND a the [`std::any::TypeId`] of the value. +/// Stores values identified by an [`Id`] AND the [`std::any::TypeId`] of the value. /// /// In other words, it maps `(Id, TypeId)` to any value you want. ///