summaryrefslogtreecommitdiff
path: root/autofeur_db/src/trie.rs
diff options
context:
space:
mode:
authorMatthieu Pignolet <m@mpgn.dev>2025-01-30 19:23:03 +0400
committerMatthieu Pignolet <m@mpgn.dev>2025-01-30 19:23:03 +0400
commitf14f90c141a742f32cb50372aaf2cd73c546e8af (patch)
treede3792c2d7679259d1dde931d2ab9062a36987a0 /autofeur_db/src/trie.rs
parent3ba26023d0d8b2b033a02a731cb5985923ee73e7 (diff)
secure the api calling for the phonemizer service
Diffstat (limited to 'autofeur_db/src/trie.rs')
-rw-r--r--autofeur_db/src/trie.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/autofeur_db/src/trie.rs b/autofeur_db/src/trie.rs
index fbd392a..171a170 100644
--- a/autofeur_db/src/trie.rs
+++ b/autofeur_db/src/trie.rs
@@ -13,7 +13,6 @@ pub struct TrieNode<'a> {
}
impl<'a> TrieNode<'a> {
- // Create new node
pub fn new<'b>(is_final: bool) -> TrieNode<'b> {
TrieNode {
is_final,