summaryrefslogtreecommitdiff
path: root/packages/integrations/netlify
diff options
context:
space:
mode:
authorGravatar Anders Kaseorg <andersk@mit.edu> 2022-12-19 03:00:00 -0800
committerGravatar GitHub <noreply@github.com> 2022-12-19 12:00:00 +0100
commit53e0c98dae1046b18eb290018274b44557e52611 (patch)
treee516b75d0dff9737c1d66c9b567fce79041b083e /packages/integrations/netlify
parent4d4883e816ed1aaefac32d811ec4a78092c31a30 (diff)
downloadastro-53e0c98dae1046b18eb290018274b44557e52611.tar.gz
astro-53e0c98dae1046b18eb290018274b44557e52611.tar.zst
astro-53e0c98dae1046b18eb290018274b44557e52611.zip
Fix spelling mistakes found by codespell and mwic (#5627)
Diffstat (limited to 'packages/integrations/netlify')
-rw-r--r--packages/integrations/netlify/CHANGELOG.md2
-rw-r--r--packages/integrations/netlify/src/netlify-functions.ts2
2 files changed, 2 insertions, 2 deletions
diff --git a/packages/integrations/netlify/CHANGELOG.md b/packages/integrations/netlify/CHANGELOG.md
index e75586d11..e103cdc6f 100644
--- a/packages/integrations/netlify/CHANGELOG.md
+++ b/packages/integrations/netlify/CHANGELOG.md
@@ -354,7 +354,7 @@
### Minor Changes
-- [`e425f896`](https://github.com/withastro/astro/commit/e425f896b668d98033ad3b998b50c1f28bc7f6ee) Thanks [@FredKSchott](https://github.com/FredKSchott)! - Update config options to resepect [RFC0019](https://github.com/withastro/rfcs/blob/main/proposals/0019-config-finalization.md)
+- [`e425f896`](https://github.com/withastro/astro/commit/e425f896b668d98033ad3b998b50c1f28bc7f6ee) Thanks [@FredKSchott](https://github.com/FredKSchott)! - Update config options to respect [RFC0019](https://github.com/withastro/rfcs/blob/main/proposals/0019-config-finalization.md)
## 0.0.2
diff --git a/packages/integrations/netlify/src/netlify-functions.ts b/packages/integrations/netlify/src/netlify-functions.ts
index 7ca551022..fe6ce7a15 100644
--- a/packages/integrations/netlify/src/netlify-functions.ts
+++ b/packages/integrations/netlify/src/netlify-functions.ts
@@ -59,7 +59,7 @@ export const createExports = (manifest: SSRManifest, args: Args) => {
method: httpMethod,
headers: new Headers(headers as any),
};
- // Attach the event body the the request, with proper encoding.
+ // Attach the event body the request, with proper encoding.
if (httpMethod !== 'GET' && httpMethod !== 'HEAD') {
const encoding = isBase64Encoded ? 'base64' : 'utf-8';
init.body =