aboutsummaryrefslogtreecommitdiffstats
path: root/docs/index.md
diff options
context:
space:
mode:
authorTom Christie2013-05-05 18:12:35 +0100
committerTom Christie2013-05-05 18:12:35 +0100
commitb70c9cc107743b45edc50c4b4e5e6a7d5a856f01 (patch)
tree2949ff7eda5c81aff8fdfd4d97a7cef8ad55f1c3 /docs/index.md
parent75b2afcb23d0968d4c7115243cdfaa778da5dca4 (diff)
parent287ff43cdd85a5c2275205bf37e19dea3f69ad01 (diff)
downloaddjango-rest-framework-b70c9cc107743b45edc50c4b4e5e6a7d5a856f01.tar.bz2
Merge master
Diffstat (limited to 'docs/index.md')
-rw-r--r--docs/index.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/index.md b/docs/index.md
index b7acb979..cc960a98 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -9,7 +9,7 @@
# Django REST framework
-**Awesome web-browseable Web APIs.**
+**Awesome web-browsable Web APIs.**
Django REST framework is a powerful and flexible toolkit that makes it easy to build Web APIs.
@@ -23,7 +23,7 @@ Some reasons you might want to use REST framework:
There is a live example API for testing purposes, [available here][sandbox].
-**Below**: *Screenshot from the browseable API*
+**Below**: *Screenshot from the browsable API*
![Screenshot][image]
@@ -36,7 +36,7 @@ REST framework requires the following:
The following packages are optional:
-* [Markdown][markdown] (2.1.0+) - Markdown support for the browseable API.
+* [Markdown][markdown] (2.1.0+) - Markdown support for the browsable API.
* [PyYAML][yaml] (3.10+) - YAML content-type support.
* [defusedxml][defusedxml] (0.3+) - XML content-type support.
* [django-filter][django-filter] (0.5.4+) - Filtering support.
@@ -50,7 +50,7 @@ The following packages are optional:
Install using `pip`, including any optional packages you want...
pip install djangorestframework
- pip install markdown # Markdown support for the browseable API.
+ pip install markdown # Markdown support for the browsable API.
pip install django-filter # Filtering support
...or clone the project from github.
@@ -64,7 +64,7 @@ Add `'rest_framework'` to your `INSTALLED_APPS` setting.
'rest_framework',
)
-If you're intending to use the browseable API you'll probably also want to add REST framework's login and logout views. Add the following to your root `urls.py` file.
+If you're intending to use the browsable API you'll probably also want to add REST framework's login and logout views. Add the following to your root `urls.py` file.
urlpatterns = patterns('',
...