From f276280d793978757b039b38a55f1134c616b5a0 Mon Sep 17 00:00:00 2001 From: Joe Maddalone Date: Thu, 11 Mar 2021 14:44:07 -0600 Subject: [PATCH] tutorials: align content with code (#9250) --- tutorials/building_a_simple_web_blog_with_vweb/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 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 10f839495b..8535499d36 100644 --- a/tutorials/building_a_simple_web_blog_with_vweb/README.md +++ b/tutorials/building_a_simple_web_blog_with_vweb/README.md @@ -220,9 +220,9 @@ import sqlite import vweb struct App { -pub mut: - vweb vweb.Context - db sqlite.DB + vweb.Context +mut: + db sqlite.DB } ```