Skip to content

Commit 59af258

Browse files
authored
docs: fix doc typo (#1412)
fixes #1370
1 parent 012037c commit 59af258

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

packages/lit-dev-content/site/docs/v2/tools/adding-lit.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ How you use a component depends on your project and the libraries or frameworks
6464

6565
### Plain HTML
6666
```html
67-
<script type="module" src="/lib/components/my-elements.js">
67+
<script type="module" src="/lib/components/my-element.js">
6868
<my-element></my-element>
6969
```
7070
@@ -73,7 +73,7 @@ How you use a component depends on your project and the libraries or frameworks
7373
JSX is a very common templating language. In JSX, lower-case element names create HTML elements, which is what Lit components are. Use the tag name you specified in the `@customElement()` decorator:
7474
7575
```tsx
76-
import './components/my-elements.js';
76+
import './components/my-element.js';
7777
7878
export const App = () => (
7979
<h1>My App</h1>

packages/lit-dev-content/site/docs/v3/tools/adding-lit.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ How you use a component depends on your project and the libraries or frameworks
6464

6565
### Plain HTML
6666
```html
67-
<script type="module" src="/lib/components/my-elements.js">
67+
<script type="module" src="/lib/components/my-element.js">
6868
<my-element></my-element>
6969
```
7070
@@ -73,7 +73,7 @@ How you use a component depends on your project and the libraries or frameworks
7373
JSX is a very common templating language. In JSX, lower-case element names create HTML elements, which is what Lit components are. Use the tag name you specified in the `@customElement()` decorator:
7474
7575
```tsx
76-
import './components/my-elements.js';
76+
import './components/my-element.js';
7777
7878
export const App = () => (
7979
<h1>My App</h1>

0 commit comments

Comments
 (0)