diff options
author | 2022-09-12 17:29:13 +0900 | |
---|---|---|
committer | 2022-09-12 16:29:13 +0800 | |
commit | ee03967f9249dc91d2b02bf4c731bfe069d1fb67 (patch) | |
tree | 42cb1968067b403a2960a6af121aef6c9869d9dc | |
parent | b0ee81d0a70d8301530c321b670ab784c9bc00a2 (diff) | |
download | astro-ee03967f9249dc91d2b02bf4c731bfe069d1fb67.tar.gz astro-ee03967f9249dc91d2b02bf4c731bfe069d1fb67.tar.zst astro-ee03967f9249dc91d2b02bf4c731bfe069d1fb67.zip |
Fix typo in render/head.ts (#4720)
-rw-r--r-- | packages/astro/src/runtime/server/render/head.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/astro/src/runtime/server/render/head.ts b/packages/astro/src/runtime/server/render/head.ts index bb0fffc2e..ed4b73f3e 100644 --- a/packages/astro/src/runtime/server/render/head.ts +++ b/packages/astro/src/runtime/server/render/head.ts @@ -32,7 +32,7 @@ export function renderHead(result: SSRResult): Promise<string> { } // This function is called by Astro components that do not contain a <head> component -// This accomodates the fact that using a <head> is optional in Astro, so this +// This accommodates the fact that using a <head> is optional in Astro, so this // is called before a component's first non-head HTML element. If the head was // already injected it is a noop. export async function* maybeRenderHead(result: SSRResult): AsyncIterable<string> { |