Skip to content

Commit 2e192af

Browse files
committed
Fix typo and Markdown
1 parent fb3abb8 commit 2e192af

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.code-samples.meilisearch.yaml

Lines changed: 4 additions & 2 deletions
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([
@@ -503,7 +505,7 @@ document_guide_add_document_primary_key: |-
503505
'poster': 'https://image.tmdb.org/t/p/w1280/xnopI5Xtky18MPhK40cZAGAOVeV.jpg',
504506
'overview': 'A boy is given the ability to become an adult superhero in times of need with a single magic word.',
505507
'release_date': '2019-03-23'
506-
}], reference_number)
508+
}], 'reference_number')
507509
security_guide_search_key_1: |-
508510
client = Client('http://127.0.0.1:7700', 'apiKey')
509511
client.index('patient_medical_records').search()

0 commit comments

Comments
 (0)