From 1ddd990687f685e7db551fe37983fc1c7ec0a916 Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Tue, 11 May 2021 11:19:13 +0300 Subject: [PATCH] ci: fix `./v check-md .` --- 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 621aee32b8..9335498964 100644 --- a/tutorials/building_a_simple_web_blog_with_vweb/README.md +++ b/tutorials/building_a_simple_web_blog_with_vweb/README.md @@ -66,7 +66,7 @@ struct App { } fn main() { - vweb.run(8081) + vweb.run(&App{}, 8081) } pub fn (mut app App) index() vweb.Result {