From 7f830fac868cf90f6181900b2bc70e9632be0f4b Mon Sep 17 00:00:00 2001
From: StunxFS <56417208+StunxFS@users.noreply.github.com>
Date: Thu, 4 Mar 2021 10:03:02 -0400
Subject: [PATCH] docs: fix links (#9112)
---
 .../building_a_simple_web_blog_with_vweb/README.md     | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/tutorials/building_a_simple_web_blog_with_vweb/README.md b/tutorials/building_a_simple_web_blog_with_vweb/README.md
index be44447c8c..10f839495b 100644
--- a/tutorials/building_a_simple_web_blog_with_vweb/README.md
+++ b/tutorials/building_a_simple_web_blog_with_vweb/README.md
@@ -92,7 +92,7 @@ Running a Vweb app on http://localhost:8081 ...
 
 Vweb helpfully provided a link, open http://localhost:8081/ in your browser:
 
- +
+ The `App` struct is an entry point of our web application. If you have experience
 with an MVC web framework, you can think of it as a controller. (Vweb is
@@ -114,7 +114,7 @@ fn (mut app App) time() vweb.Result {
 ```
 
 
-
 
 The `App` struct is an entry point of our web application. If you have experience
 with an MVC web framework, you can think of it as a controller. (Vweb is
@@ -114,7 +114,7 @@ fn (mut app App) time() vweb.Result {
 ```
 
 
- +
+ >You have to rebuild and restart the website every time you change the code.
 In the future, Vweb will detect changes and recompile the website in the background
@@ -150,7 +150,7 @@ pub fn (mut app App) index() vweb.Result {
 }
 ```
 
-
 
 >You have to rebuild and restart the website every time you change the code.
 In the future, Vweb will detect changes and recompile the website in the background
@@ -150,7 +150,7 @@ pub fn (mut app App) index() vweb.Result {
 }
 ```
 
- +
+ Good, now we have an actual HTML page.
 
@@ -290,7 +290,7 @@ Finally, let's update our view:
 v run .
 ```
 
-
 
 Good, now we have an actual HTML page.
 
@@ -290,7 +290,7 @@ Finally, let's update our view:
 v run .
 ```
 
- +
+ That was very simple, wasn't it?
 
@@ -391,7 +391,7 @@ pub fn (mut app App) articles() vweb.Result {
 }
 ```
 
-
 
 That was very simple, wasn't it?
 
@@ -391,7 +391,7 @@ pub fn (mut app App) articles() vweb.Result {
 }
 ```
 
- +
+