Skip to content

Commit 392aedd

Browse files
committed
Remove occurrences of non-ASCII chars from docs
1 parent cf4f23c commit 392aedd

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

elasticsearch/client/__init__.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -586,7 +586,7 @@ def search(self, index=None, doc_type=None, body=None, params=None):
586586
grows with the number of nodes in the cluster but is at most 256.'
587587
:arg pre_filter_shard_size: A threshold that enforces a pre-filter
588588
roundtrip to prefilter search shards based on query rewriting if
589-
the number of shards the search request expands to exceeds the
589+
the number of shards the search request expands to exceeds the
590590
threshold. This filter roundtrip can limit the number of shards
591591
significantly if for instance a shard can not match any documents
592592
based on it's rewrite method ie. if date filters are mandatory to
@@ -1145,7 +1145,7 @@ def msearch(self, body, index=None, doc_type=None, params=None):
11451145
searches the multi search api will execute
11461146
:arg pre_filter_shard_size: A threshold that enforces a pre-filter
11471147
roundtrip to prefilter search shards based on query rewriting if
1148-
the number of shards the search request expands to exceeds the
1148+
the number of shards the search request expands to exceeds the
11491149
threshold. This filter roundtrip can limit the number of shards
11501150
significantly if for instance a shard can not match any documents
11511151
based on it's rewrite method ie. if date filters are mandatory to
@@ -1387,4 +1387,3 @@ def field_caps(self, index=None, body=None, params=None):
13871387
"""
13881388
return self.transport.perform_request('GET', _make_path(index,
13891389
'_field_caps'), params=params, body=body)
1390-

0 commit comments

Comments
 (0)