Skip to content

Commit 1c69904

Browse files
committed
Fix after review
1 parent e260ef5 commit 1c69904

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.code-samples.meilisearch.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -470,3 +470,6 @@ security_guide_list_keys_1: |-
470470
security_guide_delete_key_1: |-
471471
client = Client('http://127.0.0.1:7700', 'masterKey')
472472
client.delete_key('d0552b41536279a0ad88bd595327b96f01176a60c2243e906c52ac02375f9bc4')
473+
authorization_header_1: |-
474+
client = Client('http://127.0.0.1:7700', 'masterKey')
475+
client.get_keys()

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ documents = [
9090
index.add_documents(documents) # => { "uid": 0 }
9191
```
9292

93-
With the task `uid`, you can check the status (`enqueued`, `processing`, `succeeded` or `failed`) of your documents addition using the [task endpoint](https://docs.meilisearch.com/reference/api/tasks.html#get-one-task).
93+
With the task `uid`, you can check the status (`enqueued`, `processing`, `succeeded` or `failed`) of your documents addition using the [task](https://docs.meilisearch.com/reference/api/tasks.html#get-task).
9494

9595
#### Basic Search <!-- omit in toc -->
9696

@@ -165,7 +165,7 @@ index.update_filterable_attributes([
165165

166166
You only need to perform this operation once.
167167

168-
Note that MeiliSearch will rebuild your index whenever you update `filterableAttributes`. Depending on the size of your dataset, this might take time. You can track the process using the [update status](https://docs.meilisearch.com/reference/api/updates.html#get-an-update-status).
168+
Note that MeiliSearch will rebuild your index whenever you update `filterableAttributes`. Depending on the size of your dataset, this might take time. You can track the process using the [task](https://docs.meilisearch.com/reference/api/tasks.html#get-task).
169169

170170
Then, you can perform the search:
171171

0 commit comments

Comments
 (0)