Explicitly refer to the indexmap module.

This commit is contained in:
Bauke 2024-01-23 18:05:53 +01:00
parent 3d7ee11150
commit f7e91d69cc
Signed by: Bauke
GPG Key ID: C1C0F29952BCF558
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ pub use operations::*;
pub use indexmap::indexmap;
/// Type alias for a [`indexmap::IndexMap`] with static [`str`] keys and
/// [`String`] values. The reason for [`indexmap`] is to preserve insertion
/// [`String`] values. The reason for [`mod@indexmap`] is to preserve insertion
/// order for simpler testing.
pub type GeglData = indexmap::IndexMap<&'static str, String>;