Commit f95f96ab by Alec Perkins

[docs] Fix typo, add link to Tom's Twitter profile

parent 7f681d72
...@@ -7,7 +7,7 @@ We can also write our API views using class based views, rather than function ba ...@@ -7,7 +7,7 @@ We can also write our API views using class based views, rather than function ba
We'll start by rewriting the root view as a class based view. All this involves is a little bit of refactoring. We'll start by rewriting the root view as a class based view. All this involves is a little bit of refactoring.
from blog.models import Comment from blog.models import Comment
from blog.serializers import ComentSerializer from blog.serializers import CommentSerializer
from django.http import Http404 from django.http import Http404
from djangorestframework.views import APIView from djangorestframework.views import APIView
from djangorestframework.response import Response from djangorestframework.response import Response
......
...@@ -44,6 +44,6 @@ We've reached the end of our tutorial. If you want to get more involved in the ...@@ -44,6 +44,6 @@ We've reached the end of our tutorial. If you want to get more involved in the
* Contribute on GitHub by reviewing issues, and submitting issues or pull requests. * Contribute on GitHub by reviewing issues, and submitting issues or pull requests.
* Join the REST framework group, and help build the community. * Join the REST framework group, and help build the community.
* Follow me on Twitter and say hi. * Follow me [on Twitter](https://twitter.com/_tomchristie) and say hi.
Now go build something great. Now go build something great.
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment