Skip to content

Commit 59a78c5

Browse files
committed
fixed errors in rst
1 parent c94bdad commit 59a78c5

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

docs/rest-framework/getting_started.rst

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ Django OAuth Toolkit provide a support layer for `Django REST Framework <http://
55
This tutorial is based on the Django REST Framework example and shows you how to easily integrate with it.
66

77
**NOTE**
8-
The followin code has been tested with django 1.7.7 and Django REST Framework 3.1.1
8+
9+
The following code has been tested with django 1.7.7 and Django REST Framework 3.1.1
910

1011
Step 1: Minimal setup
1112
---------------------
@@ -119,6 +120,7 @@ so we can use them for permission check.
119120
Now run the following commands:
120121

121122
::
123+
122124
python manage.py migrate
123125
python manage.py createsuperuser
124126
python manage.py runserver
@@ -129,6 +131,7 @@ runs the application.
129131
Next thing you should do is to login in the admin at
130132

131133
::
134+
132135
http://localhost:8000/admin
133136

134137
and create some users and groups that will be queried later through our API.
@@ -141,6 +144,7 @@ To obtain a valid access_token first we must register an application. DOT has a
141144
views you can use to CRUD application instances, just point your browser at:
142145

143146
::
147+
144148
http://localhost:8000/o/applications/
145149

146150
Click on the link to create a new application and fill the form with the following data:

0 commit comments

Comments
 (0)