Skip to content

Commit 4595edd

Browse files
committed
Fix typo and Markdown
1 parent fb3abb8 commit 4595edd

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.code-samples.meilisearch.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,9 @@ documents_guide_add_movie_1: |-
332332
'title': 'Amélie Poulain'
333333
}])
334334
getting_started_check_task_status_md: |-
335+
```python
335336
client.index('movies').get_task(0)
337+
```
336338
getting_started_add_documents_md: |-
337339
```bash
338340
pip3 install meilisearch
@@ -360,7 +362,7 @@ getting_started_add_meteorites: |-
360362
import json
361363
362364
json_file = open('meteorites.json')
363-
movies = json.load(json_file)
365+
meteorites = json.load(json_file)
364366
client.index('meteorites').add_documents(meteorites)
365367
getting_started_update_rankingRules: |-
366368
client.index('movies').update_ranking_rules([

0 commit comments

Comments
 (0)