From bb5caba82fc98cd34912ae13ef8f60b6fe2a1a1d Mon Sep 17 00:00:00 2001 From: craigglennie Date: Sat, 2 Jan 2016 13:33:59 -0800 Subject: [PATCH] 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. --- docs/tutorial/1-serialization.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial/1-serialization.md b/docs/tutorial/1-serialization.md index bd3fce33d..a03313c5c 100644 --- a/docs/tutorial/1-serialization.md +++ b/docs/tutorial/1-serialization.md @@ -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: - http http://127.0.0.1:8000/snippets/2/ + http http://127.0.0.1:8000/snippets/2 HTTP/1.1 200 OK ...