tutorials: fix blog.v code formatting

pull/11039/head
Alexander Medvednikov 2021-08-03 16:13:34 +03:00
parent 00d4c7082e
commit a39962a6b9
1 changed files with 1 additions and 1 deletions

View File

@ -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) }
```