From e0d1e48c02bb7ecb69d18448960f7a722534c644 Mon Sep 17 00:00:00 2001 From: johnthagen Date: Thu, 22 Apr 2021 16:02:04 -0400 Subject: [PATCH] Fix typo in docstring --- ormar/queryset/queryset.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ormar/queryset/queryset.py b/ormar/queryset/queryset.py index 3cf4211..35a1349 100644 --- a/ormar/queryset/queryset.py +++ b/ormar/queryset/queryset.py @@ -888,7 +888,7 @@ class QuerySet(Generic[T]): """ Returns all rows from a database for given model for set filter options. - Passing kwargs is a shortcut and equals to calling `filter(**kwrags).all()`. + Passing kwargs is a shortcut and equals to calling `filter(**kwargs).all()`. If there are no rows meeting the criteria an empty list is returned.