From 59201869f8b3693f5b9585e56a60a08e90d05f79 Mon Sep 17 00:00:00 2001 From: Lukas Kahwe Smith Date: Tue, 2 Sep 2025 10:24:38 +0200 Subject: [PATCH] Rename RPCHandler to RPCApiHandler in customization guide --- docs/the-complete-guide/part3/4-customization.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/the-complete-guide/part3/4-customization.md b/docs/the-complete-guide/part3/4-customization.md index c8163ea9..713dafb1 100644 --- a/docs/the-complete-guide/part3/4-customization.md +++ b/docs/the-complete-guide/part3/4-customization.md @@ -47,7 +47,7 @@ app.use('/api/rpc-custom', async (req: Request, res: Response) => { const url = req.protocol + '://' + req.get('host') + req.originalUrl; const searchParams = new URL(url).searchParams; const query = Object.fromEntries(searchParams); - const handler = RPCHandler(); + const handler = RPCApiHandler(); const { status, body } = await handler({ method: req.method,