Skip to content

Commit 53a24af

Browse files
committed
Remove extra empty lines
1 parent d43bd59 commit 53a24af

1 file changed

Lines changed: 8 additions & 12 deletions

File tree

.code-samples.meilisearch.yaml

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -272,8 +272,7 @@ getting_started_typo_tolerance: |-
272272
typoTolerance.setMinWordSizeForTypos(minWordSizeTypos);
273273
274274
client.index("movies").updateTypoToleranceSettings(typoTolerance);
275-
get_typo_tolerance_1:
276-
client.index("books").getTypoToleranceSettings();
275+
get_typo_tolerance_1: client.index("books").getTypoToleranceSettings();
277276
update_typo_tolerance_1: |-
278277
TypoTolerance typoTolerance = new TypoTolerance();
279278
HashMap<String, Integer> minWordSizeTypos =
@@ -323,7 +322,7 @@ update_non_separator_tokens_1: |-
323322
String[] newSeparatorTokens = { "@", "#" };
324323
client.index("articles").updateNonSeparatorTokensSettings(newSeparatorTokens);
325324
reset_non_separator_tokens_1: |-
326-
client.index("articles").resetNonSeparatorTokensSettings();
325+
client.index("articles").resetNonSeparatorTokensSettings();
327326
get_dictionary_1: |-
328327
client.index("books").getDictionarySettings();
329328
update_dictionary_1: |-
@@ -609,9 +608,9 @@ search_parameter_guide_facet_stats_1: |-
609608
faceted_search_update_settings_1:
610609
client.index("movie_ratings").updateFilterableAttributesSettings(new String[]
611610
{
612-
"genres",
613-
"director",
614-
"language"
611+
"genres",
612+
"director",
613+
"language"
615614
});
616615
faceted_search_walkthrough_filter_1: |-
617616
SearchRequest searchRequest =
@@ -835,10 +834,9 @@ multi_search_1: |-
835834
multiIndexSearch.addQuery(new IndexSearchRequest("movie_ratings").setQuery("us"));
836835
837836
client.multiSearch(multiSearchRequest);
838-
get_similar_post_1:
839-
SimilarDocumentRequest query = new SimilarDocumentRequest()
840-
.setId("143")
841-
.setEmbedder("manual");
837+
get_similar_post_1: SimilarDocumentRequest query = new SimilarDocumentRequest()
838+
.setId("143")
839+
.setEmbedder("manual");
842840
client.index("movies").searchSimilarDocuments(query)
843841
search_parameter_reference_distinct_1: |-
844842
SearchRequest searchRequest = SearchRequest.builder().q("QUERY TERMS").distinct("ATTRIBUTE_A").build();
@@ -894,5 +892,3 @@ update_webhook_1: |-
894892
Webhook updated_webhook = this.client.updateWebhook(webhook.getUuid(), webhookReq2);
895893
delete_webhook_1: |-
896894
this.client.deleteWebhook("WEBHOOK_UUID");
897-
898-

0 commit comments

Comments
 (0)