Update 2-requests-and-responses.md: consistency

Made it consistent with Part I. Catched it when commiting the code into my local tutorial repo.
This commit is contained in:
qwhex 2017-08-22 20:37:31 +02:00 committed by GitHub
parent fed85bc29d
commit 9b829bec2d

View File

@ -47,7 +47,7 @@ We don't need our `JSONResponse` class in `views.py` anymore, so go ahead and de
@api_view(['GET', 'POST']) @api_view(['GET', 'POST'])
def snippet_list(request): def snippet_list(request):
""" """
List all snippets, or create a new snippet. List all code snippets, or create a new snippet.
""" """
if request.method == 'GET': if request.method == 'GET':
snippets = Snippet.objects.all() snippets = Snippet.objects.all()
@ -68,7 +68,7 @@ Here is the view for an individual snippet, in the `views.py` module.
@api_view(['GET', 'PUT', 'DELETE']) @api_view(['GET', 'PUT', 'DELETE'])
def snippet_detail(request, pk): def snippet_detail(request, pk):
""" """
Retrieve, update or delete a snippet instance. Retrieve, update or delete a code snippet.
""" """
try: try:
snippet = Snippet.objects.get(pk=pk) snippet = Snippet.objects.get(pk=pk)