Skip to content

Commit

Permalink
[7.x] Fix typos in various places
Browse files Browse the repository at this point in the history
Co-authored-by: Seth Michael Larson <[email protected]>
  • Loading branch information
pgrimaud and sethmlarson committed Jul 15, 2021
1 parent f3672cb commit 68693e8
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ Changelog
* Improved behavior of ``Index.save`` where it does a better job when index
already exists
* Composite aggregations now correctly support multiple ``sources`` aggs
* ``UpdateByQuery`` implementated by @emarcey
* ``UpdateByQuery`` implemented by @emarcey

6.2.1 (2018-07-03)
------------------
Expand Down Expand Up @@ -226,7 +226,7 @@ Breaking changes:

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

Expand Down
2 changes: 1 addition & 1 deletion docs/faceted_search.rst
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ of the methods responsible for the class' functions:
filter for published articles only).

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

``highlight(self, search)``
Expand Down
2 changes: 1 addition & 1 deletion docs/persistence.rst
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ If the document is not found in elasticsearch an exception
p = Post.get(id='not-in-es', ignore=404)
p is None
When you wish to retrive multiple documents at the same time by their ``id``
When you wish to retrieve multiple documents at the same time by their ``id``
you can use the ``mget`` method:

.. code:: python
Expand Down
2 changes: 1 addition & 1 deletion elasticsearch_dsl/update_by_query.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def __init__(self, **kwargs):
:arg doc_type: only query this type.
All the parameters supplied (or omitted) at creation type can be later
overriden by methods (`using`, `index` and `doc_type` respectively).
overridden by methods (`using`, `index` and `doc_type` respectively).
"""
super(UpdateByQuery, self).__init__(**kwargs)
Expand Down

0 comments on commit 68693e8

Please sign in to comment.