commit 81954532491b265ae8dd82ac6c3cd01b77f77849 parent 983ee9b32d1d5efc15388c2a2feac7ec9d274285 Author: bohov <42538578+bohov@users.noreply.github.com> Date: Sun, 4 Nov 2018 12:25:51 +0200 Fix console output in guide. Diffstat:
M | site/guide/2-getting-started.md | | | 2 | +- |
M | site/guide/3-overview.md | | | 4 | ++-- |
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/site/guide/2-getting-started.md b/site/guide/2-getting-started.md @@ -87,7 +87,7 @@ run`. You should see the following: => keep-alive: 5s => tls: disabled 🛰 Mounting '/': - => GET / (hello) + => GET / (index) 🚀 Rocket has launched from http://localhost:8000 ``` diff --git a/site/guide/3-overview.md b/site/guide/3-overview.md @@ -167,8 +167,8 @@ Running the application, the console shows: => limits: forms = 32KiB => keep-alive: 5s => tls: disabled -🛰 Mounting '/': - => GET / (hello) +🛰 Mounting '/hello': + => GET /hello/world (world) 🚀 Rocket has launched from http://localhost:8000 ```