Skip to content

Commit 1ff96d2

Browse files
authored
Merge pull request #313 from meilisearch/fix-filterable-attribute
Fix forgotten attribute for faceting after review
2 parents d15f903 + 15f90db commit 1ff96d2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

meilisearch/index.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ def get_all_update_status(self) -> List[Dict[str, Any]]:
151151
Returns
152152
-------
153153
update:
154-
List of all enqueued and processed actions of the index.
154+
List of all enqueued, processing, processed or failed actions of the index.
155155
156156
Raises
157157
------
@@ -982,7 +982,7 @@ def get_filterable_attributes(self) -> List[str]:
982982
Returns
983983
-------
984984
settings:
985-
List containing the attributes for faceting of the index
985+
List containing the filterable attributes of the index
986986
987987
Raises
988988
------
@@ -1000,7 +1000,7 @@ def update_filterable_attributes(self, body: List[str]) -> Dict[str, int]:
10001000
Parameters
10011001
----------
10021002
body:
1003-
List containing the attributes for faceting.
1003+
List containing the filterable attributes.
10041004
10051005
Returns
10061006
-------

0 commit comments

Comments
 (0)