From 0bb533a6020ca828e9990c0891e322b607338baf Mon Sep 17 00:00:00 2001 From: Alexander Lichter Date: Tue, 26 Sep 2023 18:05:12 +0200 Subject: [PATCH] docs: fix typo (#1759) --- docs/content/2.deploy/providers/cloudflare.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/2.deploy/providers/cloudflare.md b/docs/content/2.deploy/providers/cloudflare.md index 3eca371a18..ae30d1c01d 100644 --- a/docs/content/2.deploy/providers/cloudflare.md +++ b/docs/content/2.deploy/providers/cloudflare.md @@ -226,7 +226,7 @@ const { results } = await stmt.all() Nitro allows to universally access environment variables using `process.env` or `import.meta.env` or runtime config. ::alert -Make sure to only access environment variables **within the event lifecycle** and not in global contexts since cloudflare only makes them avaialble during the request lifecycle and not before. +Make sure to only access environment variables **within the event lifecycle** and not in global contexts since cloudflare only makes them available during the request lifecycle and not before. :: **Example:** If you have set `SECRET` and `NITRO_HELLO_THERE` environment variables you can access them with either of these: