Fix route path rendering in pastebin guide.

Resolves #1027.
This commit is contained in:
Sergio Benitez 2019-06-11 14:23:12 -07:00
parent 2d924f0f51
commit 2495894c37
1 changed files with 3 additions and 3 deletions

View File

@ -22,11 +22,11 @@ curl --data-binary @test.txt https://paste.rs/
The finished product is composed of the following routes: 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 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 responds with a URL of a page containing the body's content
* retrieve: **GET /&lt;id>** - retrieves the content for the paste with id * retrieve: **`GET /<id>`** - retrieves the content for the paste with id
`<id>` `<id>`
## Getting Started ## Getting Started