Skip to content

Commit

Permalink
Adjust grammar in docstring.
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeckennedy committed Nov 12, 2020
1 parent 45f34f8 commit 4705fd8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion linqit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ def last(self, expression=None, default=_NONE):

def order_by(self, expression=None):
"""
Returns a List of data, sorted according to expression. If not expression give, the default sort is used.
Returns a List of data, sorted according to expression. If no expression is given, the default sort is used.
"""
sorted_data = sorted(self, key=expression)
return List(sorted_data)
Expand Down

0 comments on commit 4705fd8

Please sign in to comment.