From ffc4e0a29f20f235027e4171b8bd78a8be981437 Mon Sep 17 00:00:00 2001 From: iiio2 Date: Tue, 3 Dec 2024 00:26:19 +0600 Subject: [PATCH] docs(configuration): fix grammar --- docs/1.guide/97.configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/1.guide/97.configuration.md b/docs/1.guide/97.configuration.md index 1dec7a20d9..fb78f09c55 100644 --- a/docs/1.guide/97.configuration.md +++ b/docs/1.guide/97.configuration.md @@ -58,7 +58,7 @@ export default defineNuxtConfig({ ``` :: -You can now access the runtime config using `useRuntimeConfig(event)`. Use `useRuntimeConfig(event)` within event handlers and utilities and **avoid** calling it in ambient global contexts. This could lead to unexpected behavior such sharing the same runtime config across different requests. +You can now access the runtime config using `useRuntimeConfig(event)`. Use `useRuntimeConfig(event)` within event handlers and utilities and **avoid** calling it in ambient global contexts. This could lead to unexpected behavior such as sharing the same runtime config across different requests. ::code-group ```ts [api/example.get.ts (nitro)]