Fix a small typo, filerset_class -> filterset_class

This commit is contained in:
Tyler Kennedy 2019-09-04 12:30:45 -04:00 committed by GitHub
parent 1b8184ece1
commit 1695faaaba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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
}
}
}
}