From 1695faaaba5d862d0cb558ce88f5c12a0c62ebcc Mon Sep 17 00:00:00 2001 From: Tyler Kennedy Date: Wed, 4 Sep 2019 12:30:45 -0400 Subject: [PATCH] Fix a small typo, filerset_class -> filterset_class --- docs/filtering.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/filtering.rst b/docs/filtering.rst index 7661928..6fe7cab 100644 --- a/docs/filtering.rst +++ b/docs/filtering.rst @@ -127,7 +127,7 @@ create your own ``FilterSet``. You can pass it directly as follows: all_animals = DjangoFilterConnectionField(AnimalNode, filterset_class=AnimalFilter) -You can also specify the ``FilterSet`` class using the ``filerset_class`` +You can also specify the ``FilterSet`` class using the ``filterset_class`` parameter when defining your ``DjangoObjectType``, however, this can't be used in unison with the ``filter_fields`` parameter: @@ -218,4 +218,4 @@ with this set up, you can now order the users under group: xxx } } - } \ No newline at end of file + }