Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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