Skip to content

Commit 48ed36b

Browse files
committed
Apply changes from review
1 parent adeeb4d commit 48ed36b

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.code-samples.meilisearch.yaml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ search_parameter_guide_crop_1: |-
204204
cropLength: 10
205205
})
206206
search_parameter_guide_highlight_1: |-
207-
client.index('movies').search('shifu', {
207+
client.index('movies').search('winter feast', {
208208
attributesToHighlight: ['overview']
209209
})
210210
search_parameter_guide_filter_1: |-
@@ -216,9 +216,7 @@ search_parameter_guide_filter_2: |-
216216
filter: 'title="Kung Fu Panda"'
217217
})
218218
search_parameter_guide_matches_1: |-
219-
client.index('movies').search('n', {
220-
filter: 'title="Kung Fu Panda"',
221-
attributesToHighlight: ['overview'],
219+
client.index('movies').search('winter feast', {
222220
matches: true
223221
})
224222
settings_guide_synonyms_1: |-
@@ -371,3 +369,6 @@ post_dump_1: |-
371369
client.createDump()
372370
get_dump_status_1: |-
373371
client.getDumpStatus("20201101-110357260")
372+
phrase_search_1: |-
373+
client.index('movies')
374+
.search('"african american" horror')

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ import { MeiliSearch } from 'meilisearch'
166166
})()
167167
```
168168

169-
With the `updateId`, you can check the status (`enqueued`, `processed` or `failed`) of your documents addition using the [update endpoint](https://docs.meilisearch.com/reference/api/updates.html#get-an-update-status).
169+
With the `updateId`, you can check the status (`enqueued`, `processing`, `processed` or `failed`) of your documents addition using the [update endpoint](https://docs.meilisearch.com/reference/api/updates.html#get-an-update-status).
170170

171171
#### Basic Search <!-- omit in toc -->
172172

0 commit comments

Comments
 (0)