Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
pythonbrad committed Feb 9, 2024
1 parent 76d88db commit 43c0917
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions engine/translator/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
//! auto-suggestions, auto-correction and more.
//! It's designed to enhance the language processing tasks within in input method engine.
//!
//! **Note**: We use [`IndexMap`](indexmap::IndexMap) instead of [`HashMap`](std::collections::HashMap) for better performance
//! when dealing with big datasets.
//!
//! # Example
//!
//! ```
Expand Down Expand Up @@ -121,9 +124,6 @@
//! ]
//! );
//! ```
//!
//! **Note**: We use [`IndexMap`](indexmap::IndexMap) instead of [`HashMap`](std::collections::HashMap) for better performance
//! when dealing with big datasets.
use indexmap::IndexMap;
#[cfg(feature = "rhai")]
Expand Down

0 comments on commit 43c0917

Please sign in to comment.