1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

tutorials: align content with code (#9250)

This commit is contained in:
Joe Maddalone
2021-03-11 14:44:07 -06:00
committed by GitHub
parent 04c4f16f75
commit f276280d79

View File

@ -220,9 +220,9 @@ import sqlite
import vweb
struct App {
pub mut:
vweb vweb.Context
db sqlite.DB
vweb.Context
mut:
db sqlite.DB
}
```