Skip to content

Commit

Permalink
Fix docstring typos (#1206)
Browse files Browse the repository at this point in the history
  • Loading branch information
AmbientLighter committed Apr 25, 2020
1 parent 9305753 commit a5b2ace
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion django_filters/filterset.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
def remote_queryset(field):
"""
Get the queryset for the other side of a relationship. This works
for both `RelatedField`s and `ForignObjectRel`s.
for both `RelatedField`s and `ForeignObjectRel`s.
"""
model = field.related_model

Expand Down
2 changes: 1 addition & 1 deletion django_filters/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def get_filterset(self, filterset_class):

def get_filterset_kwargs(self, filterset_class):
"""
Returns the keyword arguments for instanciating the filterset.
Returns the keyword arguments for instantiating the filterset.
"""
kwargs = {
'data': self.request.GET or None,
Expand Down

0 comments on commit a5b2ace

Please sign in to comment.