aboutsummaryrefslogtreecommitdiffstats
path: root/docs/tutorial
diff options
context:
space:
mode:
authorStephan Groß2012-10-31 11:12:09 +0100
committerStephan Groß2012-10-31 11:12:09 +0100
commitde2ef5d9c24171eb6b945b7822eac809c099fec9 (patch)
tree530944d1568f393a869129bd436b61270a465c32 /docs/tutorial
parent7f7f0b6ffbae2c166bb87431b33803c9e695e251 (diff)
downloaddjango-rest-framework-de2ef5d9c24171eb6b945b7822eac809c099fec9.tar.bz2
fixed typo
Diffstat (limited to 'docs/tutorial')
-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 a666ad82..3113249b 100644
--- a/docs/tutorial/5-relationships-and-hyperlinked-apis.md
+++ b/docs/tutorial/5-relationships-and-hyperlinked-apis.md
@@ -27,7 +27,7 @@ The other obvious thing that's still missing from our pastebin API is the code h
Unlike all our other API endpoints, we don't want to use JSON, but instead just present an HTML representation. There are two style of HTML renderer provided by REST framework, one for dealing with HTML rendered using templates, the other for dealing with pre-rendered HTML. The second renderer is the one we'd like to use for this endpoint.
-The other thing we need to consider when creating the code highlight view is that there's no existing concreate generic view that we can use. We're not returning an object instance, but instead a property of an object instance.
+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: