Skip to content

Commit 2fe880e

Browse files
committed
Merge branch 'replace_book_examples_w_movies' of github.com:meilisearch/meilisearch-js into replace_book_examples_w_movies
2 parents 61b8f0b + 9391167 commit 2fe880e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ All the supported options are described in the [search parameters](https://docs.
185185

186186
```javascript
187187
await index.search(
188-
'Wonder',
188+
'wonder',
189189
{
190190
attributesToHighlight: ['*'],
191191
filters: 'id >= 1'
@@ -211,7 +211,7 @@ await index.search(
211211
"limit": 20,
212212
"nbHits": 1,
213213
"processingTimeMs": 0,
214-
"query": "Wonder"
214+
"query": "wonder"
215215
}
216216
```
217217

examples/node/getting_started.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const { MeiliSearch } = require('../../dist/bundles/meilisearch.umd.js')
77
})
88

99
// An index is where the documents are stored.
10-
const index = client.index('movies') // If your index exists
10+
const index = client.index('movies')
1111

1212
const dataset = [
1313
{ id: 1, title: 'Carol', genres: ['Romance', 'Drama'] },

0 commit comments

Comments
 (0)