aboutsummaryrefslogtreecommitdiffstats
path: root/docs/tutorial/5-relationships-and-hyperlinked-apis.md
diff options
context:
space:
mode:
authorStephan Groß2013-05-28 08:15:50 -0700
committerStephan Groß2013-05-28 08:15:50 -0700
commit100a168a0b9e65ab6a0e975e83bdf8251711a59e (patch)
tree09c25da3773f9680ad35127bc9838e6701926a2f /docs/tutorial/5-relationships-and-hyperlinked-apis.md
parentd7bf02e09ea85778c0a3fad572ad33d637c0602f (diff)
parent7a570e16e97a42d58855b5c06ea7b4d2cc0745e6 (diff)
downloaddjango-rest-framework-100a168a0b9e65ab6a0e975e83bdf8251711a59e.tar.bz2
Merge pull request #898 from minddust/fix_md_format
Fix md formatting and typos
Diffstat (limited to 'docs/tutorial/5-relationships-and-hyperlinked-apis.md')
-rw-r--r--docs/tutorial/5-relationships-and-hyperlinked-apis.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/tutorial/5-relationships-and-hyperlinked-apis.md b/docs/tutorial/5-relationships-and-hyperlinked-apis.md
index cb2e092c..2e013a94 100644
--- a/docs/tutorial/5-relationships-and-hyperlinked-apis.md
+++ b/docs/tutorial/5-relationships-and-hyperlinked-apis.md
@@ -29,7 +29,7 @@ Unlike all our other API endpoints, we don't want to use JSON, but instead just
The other thing we need to consider when creating the code highlight view is that there's no existing concrete generic view that we can use. We're not returning an object instance, but instead a property of an object instance.
-Instead of using a concrete generic view, we'll use the base class for representing instances, and create our own `.get()` method. In your snippets.views add:
+Instead of using a concrete generic view, we'll use the base class for representing instances, and create our own `.get()` method. In your snippets.views add:
from rest_framework import renderers
from rest_framework.response import Response