From b6066e109c5807f16dd81e07c81f300459e12897 Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Tue, 5 Sep 2023 00:56:16 +0900 Subject: [PATCH] refactor: fix typo in astro.ts (#8385) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Elian ☕️ --- packages/astro/src/@types/astro.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/astro/src/@types/astro.ts b/packages/astro/src/@types/astro.ts index e8801d083..c6d27ab36 100644 --- a/packages/astro/src/@types/astro.ts +++ b/packages/astro/src/@types/astro.ts @@ -1779,11 +1779,11 @@ export type AstroFeatureMap = { export interface AstroAssetsFeature { supportKind?: SupportsKind; /** - * Whether if this adapter deploys files in an enviroment that is compatible with the library `sharp` + * Whether if this adapter deploys files in an environment that is compatible with the library `sharp` */ isSharpCompatible?: boolean; /** - * Whether if this adapter deploys files in an enviroment that is compatible with the library `squoosh` + * Whether if this adapter deploys files in an environment that is compatible with the library `squoosh` */ isSquooshCompatible?: boolean; }