From a39962a6b9680541f5f83787531a331c268b0958 Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Tue, 3 Aug 2021 16:13:34 +0300 Subject: [PATCH] tutorials: fix blog.v code formatting --- tutorials/building_a_simple_web_blog_with_vweb/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 89f60e1905..06804a5a3f 100644 --- a/tutorials/building_a_simple_web_blog_with_vweb/README.md +++ b/tutorials/building_a_simple_web_blog_with_vweb/README.md @@ -415,7 +415,7 @@ pub fn (mut app App) articles() vweb.Result { If one wants to persist data they need to use a file instead of memory SQLite Database. Replace the db setup code with this instead: -```v oksyntax +``` db: sqlite.connect('blog.db') or { panic(err) } ```