aboutsummaryrefslogtreecommitdiffstats
path: root/docs/tutorial/1-serialization.md
diff options
context:
space:
mode:
authordpetzel2013-10-05 19:29:25 -0400
committerdpetzel2013-10-05 19:29:25 -0400
commit48a38386afb8a8619d2f089ebce364c7a0a845b4 (patch)
tree4cf4b5afe6f43e835849ce93f63da99f9d0fea90 /docs/tutorial/1-serialization.md
parent3833f1d55f97db33596242d89dbed997221f3b82 (diff)
downloaddjango-rest-framework-48a38386afb8a8619d2f089ebce364c7a0a845b4.tar.bz2
**very minor** typo fix
Diffstat (limited to 'docs/tutorial/1-serialization.md')
-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