summaryrefslogtreecommitdiff
path: root/docs/oauth2
diff options
context:
space:
mode:
Diffstat (limited to 'docs/oauth2')
-rw-r--r--docs/oauth2/endpoints/endpoints.rst2
-rw-r--r--docs/oauth2/endpoints/resource.rst2
-rw-r--r--docs/oauth2/grants/custom_validators.rst2
-rw-r--r--docs/oauth2/tokens/bearer.rst2
4 files changed, 4 insertions, 4 deletions
diff --git a/docs/oauth2/endpoints/endpoints.rst b/docs/oauth2/endpoints/endpoints.rst
index 0dd2da0..f05c44b 100644
--- a/docs/oauth2/endpoints/endpoints.rst
+++ b/docs/oauth2/endpoints/endpoints.rst
@@ -3,7 +3,7 @@ Provider Endpoints
Endpoints in OAuth 2 are targets with a specific responsibility and often
associated with a particular URL. Because of this the word endpoint might be
-used interchangably from the endpoint url.
+used interchangeably from the endpoint url.
The main three responsibilities in an OAuth 2 flow is to authorize access to a
certain users resources to a client, to supply said client with a token
diff --git a/docs/oauth2/endpoints/resource.rst b/docs/oauth2/endpoints/resource.rst
index a5ff885..6bd4d6b 100644
--- a/docs/oauth2/endpoints/resource.rst
+++ b/docs/oauth2/endpoints/resource.rst
@@ -5,7 +5,7 @@ Resource authorization
Resource endpoints verify that the token presented is valid and granted access
to the scopes associated with the resource in question.
-**Request Verfication**
+**Request Verification**
Each view may set certain scopes under which it is bound. Only requests
that present an access token bound to the correct scopes may access the
view. Access tokens are commonly embedded in the authorization header but
diff --git a/docs/oauth2/grants/custom_validators.rst b/docs/oauth2/grants/custom_validators.rst
index 9917dd7..f295e53 100644
--- a/docs/oauth2/grants/custom_validators.rst
+++ b/docs/oauth2/grants/custom_validators.rst
@@ -3,7 +3,7 @@ Custom Validators
The Custom validators are useful when you want to change a particular
behavior of an existing grant. That is often needed because of the
-diversity of the identity softwares and to let the oauthlib framework to be
+diversity of the identity software and to let the oauthlib framework to be
flexible as possible.
However, if you are looking into writing a custom grant type, please
diff --git a/docs/oauth2/tokens/bearer.rst b/docs/oauth2/tokens/bearer.rst
index 0776db8..c23efab 100644
--- a/docs/oauth2/tokens/bearer.rst
+++ b/docs/oauth2/tokens/bearer.rst
@@ -79,7 +79,7 @@ And you will find all claims in its decoded form:
Sometime you may want to generate custom `access_token` with a reference from a
database (as text) or use a HASH signature in JWT or use JWE (encrypted content).
-Also, note that you can declare the generate function in your instanciated
+Also, note that you can declare the generate function in your instantiated
validator to benefit of the `self` variables.
See the example below: