aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Sarah Rainsberger <sarah@rainsberger.ca> 2024-06-05 09:42:58 -0300
committerGravatar GitHub <noreply@github.com> 2024-06-05 09:42:58 -0300
commit04b6421f700e932984579ae97e3dabc0661b2198 (patch)
treeadf58aa357e50ba3c5711cbc1e8b46064d68ef33
parentd03160af530d3bbb936f89b636a1a19e6412bcf0 (diff)
downloadastro-04b6421f700e932984579ae97e3dabc0661b2198.tar.gz
astro-04b6421f700e932984579ae97e3dabc0661b2198.tar.zst
astro-04b6421f700e932984579ae97e3dabc0661b2198.zip
[docs] formatting for astro:env (#11187)
-rw-r--r--packages/astro/src/@types/astro.ts5
1 files changed, 3 insertions, 2 deletions
diff --git a/packages/astro/src/@types/astro.ts b/packages/astro/src/@types/astro.ts
index baba559e3..b7b94c876 100644
--- a/packages/astro/src/@types/astro.ts
+++ b/packages/astro/src/@types/astro.ts
@@ -2104,9 +2104,9 @@ export interface AstroUserConfig {
* })
* ```
*
- * There are currently 3 data types supported: strings, numbers and booleans.
+ * There are currently three data types supported: strings, numbers and booleans.
*
- * There are three kinds of variables, determined by the combination of `context` (`client` or `server`) and `access` (`private` or `public`) settings defined in your [`env.schema`](#experimentalenvschema):
+ * There are three kinds of environment variables, determined by the combination of `context` (client or server) and `access` (private or public) settings defined in your [`env.schema`](#experimentalenvschema):
*
* - **Public client variables**: These variables end up in both your final client and server bundles, and can be accessed from both client and server through the `astro:env/client` module:
*
@@ -2137,6 +2137,7 @@ export interface AstroUserConfig {
/**
* @docs
* @name experimental.env.schema
+ * @kind h4
* @type {EnvSchema}
* @default `undefined`
* @version 4.10.0