diff --git a/docs/tutorial/getting-started/handler-and-context/index.md b/docs/tutorial/getting-started/handler-and-context/index.md index 00d193bf..71e815b9 100644 --- a/docs/tutorial/getting-started/handler-and-context/index.md +++ b/docs/tutorial/getting-started/handler-and-context/index.md @@ -47,7 +47,7 @@ A handler can also be an literal value, see H import { Elysia } from 'elysia' new Elysia() - // `() => 'hello world'` is a handler + // `'hello world'` is a handler .get('/', 'hello world') .listen(3000) ```