Fixes incorrect snippet endpoint in serialization tutorial

There is a block showing how to get a particular snippet's data using httpie. The trailing slash on the URL causes a 404 to be returned. This commit removes that trailing slash.
This commit is contained in:
craigglennie 2016-01-02 13:33:59 -08:00
parent dafbe65ff6
commit bb5caba82f

View File

@ -358,7 +358,7 @@ Finally, we can get a list of all of the snippets:
Or we can get a particular snippet by referencing its id: Or we can get a particular snippet by referencing its id:
http http://127.0.0.1:8000/snippets/2/ http http://127.0.0.1:8000/snippets/2
HTTP/1.1 200 OK HTTP/1.1 200 OK
... ...