Skip to content

Commit

Permalink
Spelling and grammar (#1585)
Browse files Browse the repository at this point in the history
* Spelling and grammar

* fix async example

---------

Co-authored-by: Miguel Grinberg <miguel.grinberg@gmail.com>
(cherry picked from commit f56d3a5)
  • Loading branch information
EtK2000 authored and miguelgrinberg committed Apr 29, 2024
1 parent bc54474 commit fc2b7ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/async/completion.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class Person(AsyncDocument):
def clean(self):
"""
Automatically construct the suggestion input and weight by taking all
possible permutation of Person's name as ``input`` and taking their
possible permutations of Person's name as ``input`` and taking their
popularity as ``weight``.
"""
self.suggest = {
Expand Down
2 changes: 1 addition & 1 deletion examples/completion.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class Person(Document):
def clean(self):
"""
Automatically construct the suggestion input and weight by taking all
possible permutation of Person's name as ``input`` and taking their
possible permutations of Person's name as ``input`` and taking their
popularity as ``weight``.
"""
self.suggest = {
Expand Down

0 comments on commit fc2b7ff

Please sign in to comment.