From 101bb22a55e8bef33eaf459464e72c1fd1e1d934 Mon Sep 17 00:00:00 2001 From: thee Date: Wed, 25 Jun 2025 01:23:35 +0700 Subject: [PATCH] docs: fix unintended code block level --- docs/plugins/trpc.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/plugins/trpc.md b/docs/plugins/trpc.md index b6194ee0..6abbf316 100644 --- a/docs/plugins/trpc.md +++ b/docs/plugins/trpc.md @@ -53,7 +53,7 @@ const app = new Elysia().use(trpc(router)).listen(3000) Accept the tRPC router and register to Elysia's handler. -````ts +```typescript trpc( router: Router, option?: { @@ -67,4 +67,3 @@ trpc( ### endpoint The path to the exposed TRPC endpoint. -````