diff --git a/docs/examples/custom_actions.rst b/docs/examples/custom_actions.rst index 6f912f2..d96bdc1 100644 --- a/docs/examples/custom_actions.rst +++ b/docs/examples/custom_actions.rst @@ -32,7 +32,7 @@ Consumer that is bound to a Model. ---------------------------------- Inheriting from ``GenericAsyncAPIConsumer`` we have access to methods like ``get_queryset`` and ``get_object``, -this way we can perform operations in our django models though custom actions. +this way we can perform operations in our Django models though custom actions. .. code-block:: python diff --git a/docs/examples/generic_api_consumer.rst b/docs/examples/generic_api_consumer.rst index d285ffb..1a925aa 100644 --- a/docs/examples/generic_api_consumer.rst +++ b/docs/examples/generic_api_consumer.rst @@ -16,7 +16,7 @@ operations. Example ------- -This example shows how to create a basic consumer for the django's auth user model. We +This example shows how to create a basic consumer for the Django's auth user model. We are going to create a serializer class for it, and mixin with the ``GenericAsyncAPIConsumer`` the action mixins. .. code-block:: python