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