Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .code-samples.meilisearch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1043,7 +1043,7 @@ getting_started_update_displayed_attributes: |-
}
}
getting_started_communicating_with_a_protected_instance: |-
let client = MeiliSearch(host: "http://localhost:7700", apiKey: "apiKey")
let client = try MeiliSearch(host: "http://localhost:7700", apiKey: "apiKey")
client.index("movies").search { (result) in
switch result {
case .success(let searchResult):
Expand Down Expand Up @@ -1388,7 +1388,7 @@ geosearch_guide_sort_usage_2: |-
}
}
landing_getting_started_1: |-
let client = MeiliSearch(host: "http://localhost:7700", apiKey: "masterKey")
let client = try MeiliSearch(host: "http://localhost:7700", apiKey: "masterKey")
let documents = """
[
{ "id": 1, "title": "Carol" },
Expand Down