From e3b3a7ebbea7ee8bf62dc812418b99d48d2c603d Mon Sep 17 00:00:00 2001 From: Sven-Hendrik Haase Date: Mon, 5 Aug 2019 17:29:01 +0200 Subject: [PATCH] Add heading to auto-reloading bit This makes it a bit more visually distinguished from the paragraph before. I think that's a good thing as it's essentially a completely separate topic. --- content/docs/getting-started.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/content/docs/getting-started.md b/content/docs/getting-started.md index 3472e27..21a6c44 100644 --- a/content/docs/getting-started.md +++ b/content/docs/getting-started.md @@ -43,8 +43,11 @@ accepts a function that should return an application factory. That's it! Now, compile and run the program with `cargo run`. Head over to ``http://localhost:8088/`` to see the results. -If you want, you can have an automatic reloading server during development -that recompiles on demand. To see how this can be accomplished have a look -at the [autoreload pattern][autoload]. +### Auto-reloading + +If you want, you can have an automatically reloading server during development +that recompiles on demand. This isn't necessary, but it makes rapid prototyping +more convenient as you can see changes instantly upon saving. +To see how this can be accomplished, have a look at the [autoreload pattern][autoload]. [autoload]: ../autoreload/