diff options
Diffstat (limited to 'src/common/fuzzy.odin')
| -rw-r--r-- | src/common/fuzzy.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/fuzzy.odin b/src/common/fuzzy.odin index f6c8b11..adc6a98 100644 --- a/src/common/fuzzy.odin +++ b/src/common/fuzzy.odin @@ -118,7 +118,7 @@ make_fuzzy_matcher :: proc(pattern: string, allocator := context.temp_allocator) fuzzy_to_acronym :: proc(word: string) -> (string, bool) { - builder := strings.make_builder(context.temp_allocator) + builder := strings.builder_make(context.temp_allocator) if len(word) <= 1 { return "", false |