From b84c762e35fce71fac23adc015641e2f34ece2e5 Mon Sep 17 00:00:00 2001 From: sajebehari <148820721+sajebehari@users.noreply.github.com> Date: Tue, 11 Jun 2024 17:12:41 -0400 Subject: [PATCH] docs: (qwikcity/env-variables) removed we; punctuation --- .../docs/src/routes/docs/(qwikcity)/env-variables/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/docs/src/routes/docs/(qwikcity)/env-variables/index.mdx b/packages/docs/src/routes/docs/(qwikcity)/env-variables/index.mdx index dd0a7e4f81d..9c818afdac5 100644 --- a/packages/docs/src/routes/docs/(qwikcity)/env-variables/index.mdx +++ b/packages/docs/src/routes/docs/(qwikcity)/env-variables/index.mdx @@ -144,7 +144,7 @@ export const serverFunction = server$(function () { ### Usage in serverfull architecture (Example:Express) -For accessing the .env variables in serverfull architecture we need to use singleton design pattern, initialize the db in a plugin and access it with getDB wherever it is needed +For accessing the .env variables in serverfull architecture you need to use singleton design pattern, initialize the db in a plugin, and access it with getDB wherever it is needed. ```typescript title="src/util/db.ts" let _db!: AppDatabase;