veb: fix readme typo (#24645)

This commit is contained in:
Alain Gilbert 2025-06-02 21:40:52 -07:00 committed by GitHub
parent 55d004e310
commit dbc4071f6f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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}')
}
```