summaryrefslogtreecommitdiff
path: root/packages/integrations/lit/server-shim.js
diff options
context:
space:
mode:
authorGravatar Viktor Szépe <viktor@szepe.net> 2024-05-01 07:56:38 +0200
committerGravatar GitHub <noreply@github.com> 2024-05-01 13:56:38 +0800
commita146cf1012483b030a8146fb3035801f3c0c9099 (patch)
treeddececa7326f41bbcdf4e44b7205f6a43e4e8efa /packages/integrations/lit/server-shim.js
parent1b7ed7a31a3a7a244440562a8e16aac1617c0114 (diff)
downloadastro-a146cf1012483b030a8146fb3035801f3c0c9099.tar.gz
astro-a146cf1012483b030a8146fb3035801f3c0c9099.tar.zst
astro-a146cf1012483b030a8146fb3035801f3c0c9099.zip
Fix typos (#10923)
Diffstat (limited to 'packages/integrations/lit/server-shim.js')
-rw-r--r--packages/integrations/lit/server-shim.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/integrations/lit/server-shim.js b/packages/integrations/lit/server-shim.js
index ed371f89a..d777382f2 100644
--- a/packages/integrations/lit/server-shim.js
+++ b/packages/integrations/lit/server-shim.js
@@ -25,7 +25,7 @@ globalThis.customElements = litCE;
const litCeDefine = customElements.define;
// We need to patch customElements.define to keep track of the tagName on the
-// class itself so that we can transform JSX custom element class definintion to
+// class itself so that we can transform JSX custom element class definition to
// a DSD string on the server, because there is no way to get the tagName from a
// CE class otherwise. Not an issue on client:only because the browser supports
// appending a class instance directly to the DOM.