diff options
author | 2024-06-05 10:15:54 -0300 | |
---|---|---|
committer | 2024-06-05 14:15:54 +0100 | |
commit | 1529428ed878edee67820df80f0dfff4aae11fc2 (patch) | |
tree | 43ba02050b3b601473a0c8a1e5399f3ea4e3b958 | |
parent | db71177b2ac3e99e91b86cc94c9b4df56e12f716 (diff) | |
download | astro-1529428ed878edee67820df80f0dfff4aae11fc2.tar.gz astro-1529428ed878edee67820df80f0dfff4aae11fc2.tar.zst astro-1529428ed878edee67820df80f0dfff4aae11fc2.zip |
[docs] format error messages (#11188)
-rw-r--r-- | packages/astro/src/core/errors/errors-data.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/astro/src/core/errors/errors-data.ts b/packages/astro/src/core/errors/errors-data.ts index ead98388f..677f2662b 100644 --- a/packages/astro/src/core/errors/errors-data.ts +++ b/packages/astro/src/core/errors/errors-data.ts @@ -1234,18 +1234,18 @@ export const EnvInvalidVariable = { /** * @docs * @description - * "astro:env/server" exported function "getSecret" is not supported by your adapter.. + * The `astro:env/server` exported function `getSecret()` is not supported by your adapter. */ export const EnvUnsupportedGetSecret = { name: 'EnvUnsupportedGetSecret', title: 'Unsupported astro:env getSecret', - message: '"astro:env/server" exported function "getSecret" is not supported by your adapter.', + message: '\`astro:env/server\` exported function \`getSecret\` is not supported by your adapter.', } satisfies ErrorData; /** * @docs * @description - * Module is only available server-side + * This module is only available server-side. */ export const ServerOnlyModule = { name: 'ServerOnlyModule', |