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 b5be5c0d03..94ca8a386f 100644 --- a/tutorials/building_a_simple_web_blog_with_vweb/README.md +++ b/tutorials/building_a_simple_web_blog_with_vweb/README.md @@ -350,7 +350,7 @@ Create `new.html`: import vweb [post] -pub fn (mut app App) new_article(title string, text form) vweb.Result { +pub fn (mut app App) new_article(title string, text string) vweb.Result { if title == '' || text == '' { return app.text('Empty text/title') }