From 230422bb1681f47aef6d2f02690d953fc022efb6 Mon Sep 17 00:00:00 2001 From: wobsoriano Date: Wed, 23 Aug 2023 12:49:09 -0700 Subject: [PATCH] docs: fix incorrect syntax --- docs/content/1.get-started/5.tips/6.response-caching.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/1.get-started/5.tips/6.response-caching.md b/docs/content/1.get-started/5.tips/6.response-caching.md index 2952698..722d367 100644 --- a/docs/content/1.get-started/5.tips/6.response-caching.md +++ b/docs/content/1.get-started/5.tips/6.response-caching.md @@ -6,7 +6,7 @@ title: Response Caching Your server responses must [satisfy some criteria](https://vercel.com/docs/concepts/functions/serverless-functions/edge-caching) in order for them to be cached (i.e. by Vercel's Edge Network). Please refer to [this section of the tRPC.io documentation](https://trpc.io/docs/caching) for more information. -The createNuxtApiHandler` function conveniently allows you to specify a `responseMeta` function. +The `createNuxtApiHandler` function conveniently allows you to specify a `responseMeta` function. ```ts [server/api/trpc/[trpc].ts] import { createNuxtApiHandler } from 'trpc-nuxt'