diff --git a/vlib/veb/README.md b/vlib/veb/README.md index 508bb1ebdb..baffba51ca 100644 --- a/vlib/veb/README.md +++ b/vlib/veb/README.md @@ -175,7 +175,7 @@ pub fn (app &App) hello_user(mut ctx Context, user string) veb.Result { vv @['/document/:id'] vv pub fn (app &App) get_document(mut ctx Context, id int) veb.Result { - return ctx.text('Hello ${user}') + return ctx.text('Document ${id}') } ```