aboutsummaryrefslogtreecommitdiffstats
path: root/docs/tutorial
diff options
context:
space:
mode:
authorTom Christie2013-10-10 17:34:15 +0100
committerTom Christie2013-10-10 17:34:15 +0100
commitf18158358d99f94e2475821b1f3477dde0731bd7 (patch)
tree84ed0ffb3cbed0b08d7281e11ec99336df2b7b75 /docs/tutorial
parentc3e370b168de03b963b6afcffce6bd52e1d4ab7c (diff)
parent0bbc775b950d4ff7d3caef4fda719642ad792075 (diff)
downloaddjango-rest-framework-f18158358d99f94e2475821b1f3477dde0731bd7.tar.bz2
Merge branch 'master' of https://github.com/tomchristie/django-rest-framework
Diffstat (limited to 'docs/tutorial')
-rw-r--r--docs/tutorial/1-serialization.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/tutorial/1-serialization.md b/docs/tutorial/1-serialization.md
index 22d29285..e1c0009c 100644
--- a/docs/tutorial/1-serialization.md
+++ b/docs/tutorial/1-serialization.md
@@ -225,7 +225,7 @@ For the moment we won't use any of REST framework's other features, we'll just w
We'll start off by creating a subclass of HttpResponse that we can use to render any data we return into `json`.
-Edit the `snippet/views.py` file, and add the following.
+Edit the `snippets/views.py` file, and add the following.
from django.http import HttpResponse
from django.views.decorators.csrf import csrf_exempt