Skip to content

Commit 68693e8

Browse files
pgrimaudsethmlarson
andcommitted
[7.x] Fix typos in various places
Co-authored-by: Seth Michael Larson <seth.larson@elastic.co>
1 parent f3672cb commit 68693e8

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Changelog.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ Changelog
100100
* Improved behavior of ``Index.save`` where it does a better job when index
101101
already exists
102102
* Composite aggregations now correctly support multiple ``sources`` aggs
103-
* ``UpdateByQuery`` implementated by @emarcey
103+
* ``UpdateByQuery`` implemented by @emarcey
104104

105105
6.2.1 (2018-07-03)
106106
------------------
@@ -226,7 +226,7 @@ Breaking changes:
226226

227227
2.2.0 (2016-11-04)
228228
------------------
229-
* accessing missing string fields no longer returnd ``''`` but returns
229+
* accessing missing string fields no longer returned ``''`` but returns
230230
``None`` instead.
231231
* fix issues with bool's ``|`` and ``&`` operators and ``minimum_should_match``
232232

docs/faceted_search.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ of the methods responsible for the class' functions:
8383
filter for published articles only).
8484

8585
``query(self, search)``
86-
adds the query postion of the search (if search input specified), by default
86+
adds the query position of the search (if search input specified), by default
8787
using ``MultiField`` query. Override this if you want to modify the query type used.
8888

8989
``highlight(self, search)``

docs/persistence.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ If the document is not found in elasticsearch an exception
228228
p = Post.get(id='not-in-es', ignore=404)
229229
p is None
230230
231-
When you wish to retrive multiple documents at the same time by their ``id``
231+
When you wish to retrieve multiple documents at the same time by their ``id``
232232
you can use the ``mget`` method:
233233

234234
.. code:: python

elasticsearch_dsl/update_by_query.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def __init__(self, **kwargs):
3535
:arg doc_type: only query this type.
3636
3737
All the parameters supplied (or omitted) at creation type can be later
38-
overriden by methods (`using`, `index` and `doc_type` respectively).
38+
overridden by methods (`using`, `index` and `doc_type` respectively).
3939
4040
"""
4141
super(UpdateByQuery, self).__init__(**kwargs)

0 commit comments

Comments
 (0)