From 1529428ed878edee67820df80f0dfff4aae11fc2 Mon Sep 17 00:00:00 2001 From: Sarah Rainsberger Date: Wed, 5 Jun 2024 10:15:54 -0300 Subject: [PATCH] [docs] format error messages (#11188) --- packages/astro/src/core/errors/errors-data.ts | 6 +++--- 1 file 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 ead98388fa37..677f2662b20e 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',