-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
03c4d41
commit 6fd19bf
Showing
13 changed files
with
38 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
//! Fuzzy matching for autocompletion. | ||
pub(crate) mod context_damerau_levenshtein; | ||
pub(crate) mod context_jaro; | ||
pub(crate) mod context_jaro_winkler; | ||
pub(crate) mod context_levenshtein; | ||
pub(crate) mod context_sorensen_dice; | ||
pub(crate) mod global_damerau_levenshtein; | ||
pub(crate) mod global_jaro; | ||
pub(crate) mod global_jaro_winkler; | ||
pub(crate) mod global_levenshtein; | ||
pub(crate) mod global_sorensen_dice; | ||
pub mod context_damerau_levenshtein; | ||
pub mod context_jaro; | ||
pub mod context_jaro_winkler; | ||
pub mod context_levenshtein; | ||
pub mod context_sorensen_dice; | ||
pub mod global_damerau_levenshtein; | ||
pub mod global_jaro; | ||
pub mod global_jaro_winkler; | ||
pub mod global_levenshtein; | ||
pub mod global_sorensen_dice; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
//! Fuzzy matching for keyword substitution. | ||
pub(crate) mod global_damerau_levenshtein; | ||
pub(crate) mod global_jaro; | ||
pub(crate) mod global_jaro_winkler; | ||
pub(crate) mod global_levenshtein; | ||
pub(crate) mod global_sorensen_dice; | ||
pub mod global_damerau_levenshtein; | ||
pub mod global_jaro; | ||
pub mod global_jaro_winkler; | ||
pub mod global_levenshtein; | ||
pub mod global_sorensen_dice; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters