mirror of https://github.com/rwf2/Rocket.git
Fix console output in guide.
This commit is contained in:
parent
983ee9b32d
commit
8195453249
|
@ -87,7 +87,7 @@ run`. You should see the following:
|
||||||
=> keep-alive: 5s
|
=> keep-alive: 5s
|
||||||
=> tls: disabled
|
=> tls: disabled
|
||||||
🛰 Mounting '/':
|
🛰 Mounting '/':
|
||||||
=> GET / (hello)
|
=> GET / (index)
|
||||||
🚀 Rocket has launched from http://localhost:8000
|
🚀 Rocket has launched from http://localhost:8000
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
@ -167,8 +167,8 @@ Running the application, the console shows:
|
||||||
=> limits: forms = 32KiB
|
=> limits: forms = 32KiB
|
||||||
=> keep-alive: 5s
|
=> keep-alive: 5s
|
||||||
=> tls: disabled
|
=> tls: disabled
|
||||||
🛰 Mounting '/':
|
🛰 Mounting '/hello':
|
||||||
=> GET / (hello)
|
=> GET /hello/world (world)
|
||||||
🚀 Rocket has launched from http://localhost:8000
|
🚀 Rocket has launched from http://localhost:8000
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue