From dbc4071f6fdc9ee94652f622017b9c707b183bdb Mon Sep 17 00:00:00 2001 From: Alain Gilbert Date: Mon, 2 Jun 2025 21:40:52 -0700 Subject: [PATCH] veb: fix readme typo (#24645) --- vlib/veb/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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}') } ```