From 2792c771a6de2139d87d1a3d9c6bbc68a644e207 Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Mon, 4 Sep 2023 02:39:57 +0900 Subject: [PATCH] refactor: fix typo in astro.ts enviroment -> environment --- 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 e8801d083868..c6d27ab36742 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; }