From 2495894c37cce8bb6c5a1b60aff3d8153436b8fc Mon Sep 17 00:00:00 2001 From: Sergio Benitez Date: Tue, 11 Jun 2019 14:23:12 -0700 Subject: [PATCH] Fix route path rendering in pastebin guide. Resolves #1027. --- site/guide/10-pastebin.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/site/guide/10-pastebin.md b/site/guide/10-pastebin.md index e7c9d84b..2972df34 100644 --- a/site/guide/10-pastebin.md +++ b/site/guide/10-pastebin.md @@ -22,11 +22,11 @@ curl --data-binary @test.txt https://paste.rs/ The finished product is composed of the following routes: - * index: **GET /** - returns a simple HTML page with instructions about how + * index: **`GET /`** - returns a simple HTML page with instructions about how to use the service - * upload: **POST /** - accepts raw data in the body of the request and + * upload: **`POST /`** - accepts raw data in the body of the request and responds with a URL of a page containing the body's content - * retrieve: **GET /<id>** - retrieves the content for the paste with id + * retrieve: **`GET /`** - retrieves the content for the paste with id `` ## Getting Started