summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Ikko Eltociear Ashimine <eltociear@gmail.com> 2023-09-05 00:56:16 +0900
committerGravatar GitHub <noreply@github.com> 2023-09-04 17:56:16 +0200
commitb6066e109c5807f16dd81e07c81f300459e12897 (patch)
tree48d605427f819b734b4b5259002f0f8df890ca45
parentc48d4765c12ca28f4e1fa056959dce9016277b05 (diff)
downloadastro-b6066e109c5807f16dd81e07c81f300459e12897.tar.gz
astro-b6066e109c5807f16dd81e07c81f300459e12897.tar.zst
astro-b6066e109c5807f16dd81e07c81f300459e12897.zip
refactor: fix typo in astro.ts (#8385)
Co-authored-by: Elian ☕️ <hello@elian.codes>
-rw-r--r--packages/astro/src/@types/astro.ts4
1 files 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;
}