Skip to content

Commit

Permalink
fix: get dictionary method name
Browse files Browse the repository at this point in the history
  • Loading branch information
Ja7ad committed Aug 20, 2024
1 parent 692e12e commit 932bbf2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .code-samples.meilisearch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -898,16 +898,16 @@ update_search_cutoff_1: |-
reset_search_cutoff_1: |-
client.Index("books").ResetSearchCutoffMs()
get_dictionary_1: |-
client.Index("articles").GetSeparatorTokens()
get_separator_tokens_1: |-
client.Index("books").GetDictionary()
client.Index("articles").GetDictionary()
update_dictionary_1: |-
client.Index("books").UpdateSeparatorTokens([]string{
"J. R. R.",
"W. E. B.",
})
reset_dictionary_1: |-
client.Index("books").ResetDictionary()
get_separator_tokens_1: |-
client.Index("books").GetSeparatorTokens()
update_separator_tokens_1: |-
client.Index("articles").UpdateSeparatorTokens([]string{
"|",
Expand Down

0 comments on commit 932bbf2

Please sign in to comment.