Skip to content

Commit 1348bdc

Browse files
jonathanbergercarltongibson
authored andcommitted
Fixed quickstart.md typos (#6348)
1 parent a52087b commit 1348bdc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/tutorial/quickstart.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ The project layout should look like:
4646
./tutorial/urls.py
4747
./tutorial/wsgi.py
4848

49-
It may look unusual that the application has been created within the project directory. Using the project's namespace avoids name clashes with external module (topic goes outside the scope of the quickstart).
49+
It may look unusual that the application has been created within the project directory. Using the project's namespace avoids name clashes with external modules (a topic that goes outside the scope of the quickstart).
5050

5151
Now sync your database for the first time:
5252

@@ -77,7 +77,7 @@ First up we're going to define some serializers. Let's create a new module named
7777
model = Group
7878
fields = ('url', 'name')
7979

80-
Notice that we're using hyperlinked relations in this case, with `HyperlinkedModelSerializer`. You can also use primary key and various other relationships, but hyperlinking is good RESTful design.
80+
Notice that we're using hyperlinked relations in this case with `HyperlinkedModelSerializer`. You can also use primary key and various other relationships, but hyperlinking is good RESTful design.
8181

8282
## Views
8383

@@ -133,7 +133,7 @@ Again, if we need more control over the API URLs we can simply drop down to usin
133133
Finally, we're including default login and logout views for use with the browsable API. That's optional, but useful if your API requires authentication and you want to use the browsable API.
134134

135135
## Pagination
136-
Pagination allows you to control how many objects per page are returned. To enable it add following lines to the `tutorial/settings.py`
136+
Pagination allows you to control how many objects per page are returned. To enable it add the following lines to `tutorial/settings.py`
137137

138138
REST_FRAMEWORK = {
139139
'DEFAULT_PAGINATION_CLASS': 'rest_framework.pagination.PageNumberPagination',

0 commit comments

Comments
 (0)