summaryrefslogtreecommitdiff
path: root/docs/oauth2/grants/custom_grant.rst
diff options
context:
space:
mode:
Diffstat (limited to 'docs/oauth2/grants/custom_grant.rst')
-rw-r--r--docs/oauth2/grants/custom_grant.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/oauth2/grants/custom_grant.rst b/docs/oauth2/grants/custom_grant.rst
index 8c4571c..c639420 100644
--- a/docs/oauth2/grants/custom_grant.rst
+++ b/docs/oauth2/grants/custom_grant.rst
@@ -37,7 +37,7 @@ existing ones.
3. Associate it with Endpoints
------------------------------
-Then, once implemented, you have to instanciate the grant object and
+Then, once implemented, you have to instantiate the grant object and
bind it to your endpoint. Either :py:class:`AuthorizationEndpoint`,
:py:class:`TokenEndpoint` or both.
@@ -48,7 +48,7 @@ This example shows how to add a simple extension to the `Token endpoint`:
* creation of a new class ``MyCustomGrant``, and implement ``create_token_response``.
* do basics and custom request validations, then call a custom method
of `Request Validator` to extend the interface for the implementor.
-* instanciate the new grant, and bind it with an existing ``Server``.
+* instantiate the new grant, and bind it with an existing ``Server``.
.. code-block:: python