diff --git a/tutorials/building-a-simple-web-blog-with-vweb.md b/tutorials/building-a-simple-web-blog-with-vweb.md
index a010ee1df2..f1688cb82c 100644
--- a/tutorials/building-a-simple-web-blog-with-vweb.md
+++ b/tutorials/building-a-simple-web-blog-with-vweb.md
@@ -96,8 +96,9 @@ Vweb often uses convention over configuration and adding a new action requires
no routing rules either:
```v
-fn (mut app App) time() {
+fn (mut app App) time() vweb.Result {
app.vweb.text(time.now().format())
+ return vweb.Result{}
}
```
@@ -118,9 +119,9 @@ Let's return an HTML view instead. Create `index.html` in the same directory:
```html
-