Skip to content

Commit f28496c

Browse files
committed
Small documentation fixes
1 parent 9b28c9e commit f28496c

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

docs/advanced_topics.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@ That's all, now Django OAuth Toolkit will use your model wherever an Application
5555
Skip authorization form
5656
=======================
5757

58-
Depending on the OAuth2 flow in use and the access token policy, users might be prompted for the
59-
same authorization multiple times: sometimes this is acceptable or even desiderable but other it isn't.
60-
To control DOT behaviour you can use `approval_prompt` parameter when hitting the authorization endpoint.
58+
Depending on the OAuth2 flow in use and the access token policy, users might be prompted for the
59+
same authorization multiple times: sometimes this is acceptable or even desirable but other times it isn't.
60+
To control DOT behaviour you can use the `approval_prompt` parameter when hitting the authorization endpoint.
6161
Possible values are:
6262

6363
* `force` - users are always prompted for authorization.

docs/contributing.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ of the pull request.
4747
Pull upstream changes into your fork regularly
4848
==============================================
4949

50-
It's a good practice to pull upstream changes from master into your fork on a regular basis, infact if you work on
50+
It's a good practice to pull upstream changes from master into your fork on a regular basis, in fact if you work on
5151
outdated code and your changes diverge too far from master, the pull request has to be rejected.
5252

5353
To pull in upstream changes::
@@ -85,7 +85,7 @@ Add the tests!
8585
--------------
8686

8787
Whenever you add code, you have to add tests as well. We cannot accept untested code, so unless it is a peculiar
88-
situation you previously discussed with the core commiters, if your pull request reduces the test coverage it will be
88+
situation you previously discussed with the core committers, if your pull request reduces the test coverage it will be
8989
**immediately rejected**.
9090

9191
Code conventions matter

docs/tutorial/tutorial_02.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Testing your API
5151
Time to make requests to your API.
5252

5353
For a quick test, try accessing your app at the url `/api/hello` with your browser
54-
and verify that it reponds with a `403` (in fact no `HTTP_AUTHORIZATION` header was provided).
54+
and verify that it responds with a `403` (in fact no `HTTP_AUTHORIZATION` header was provided).
5555
You can test your API with anything that can perform HTTP requests, but for this tutorial you can use the online
5656
`consumer client <http://django-oauth-toolkit.herokuapp.com/consumer/client>`_.
5757
Just fill the form with the URL of the API endpoint (i.e. http://localhost:8000/api/hello if you're on localhost) and

0 commit comments

Comments
 (0)