Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
angelorodem authored Mar 17, 2024
1 parent 8fe9592 commit 1dce9c3
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ A Radix trie for suggestion search, it allows searching for data indexed by a se
* Customizable suggestions data, you can add anything associated with a word or a set of words.
* Non-fuzzy suggestion retrieval in µs to ns for even millions of entries.

## Note

This crate uses a nightly feature #![feature(round_char_boundary)]
it only works on nightly.

## Examples

A common usage for suggestion tries is to find data like words, documents, executables and any other data that is associated with a set of words;
Expand Down Expand Up @@ -53,4 +58,4 @@ assert_eq!(results.unwrap()[0].title, "Rat");

## Docs

check the docs [here](https://docs.rs/suggestion_trie/latest/suggestion_trie/)
check the docs [here](https://docs.rs/suggestion_trie/latest/suggestion_trie/)

0 comments on commit 1dce9c3

Please sign in to comment.