Skip to content

Commit

Permalink
replace Item with I
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewJakubowicz committed Jan 12, 2024
1 parent 1362dbf commit 47a8971
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions packages/lit-dev-content/site/docs/v2/templates/directives.md
Original file line number Diff line number Diff line change
Expand Up @@ -1832,8 +1832,8 @@ import {asyncAppend} from 'lit/directives/async-append.js';
```ts
asyncAppend(
iterable: AsyncIterable<Item>,
mapper?: (item: Item, index?: number) => unknown
iterable: AsyncIterable<I>,
mapper?: (item: I, index?: number) => unknown
)
```
Expand Down Expand Up @@ -1928,8 +1928,8 @@ import {asyncReplace} from 'lit/directives/async-replace.js';
```ts
asyncReplace(
iterable: AsyncIterable<Item>,
mapper?: (item: Item, index?: number) => unknown
iterable: AsyncIterable<I>,
mapper?: (item: I, index?: number) => unknown
)
```
Expand Down
8 changes: 4 additions & 4 deletions packages/lit-dev-content/site/docs/v3/templates/directives.md
Original file line number Diff line number Diff line change
Expand Up @@ -1832,8 +1832,8 @@ import {asyncAppend} from 'lit/directives/async-append.js';
```ts
asyncAppend(
iterable: AsyncIterable<Item>,
mapper?: (item: Item, index?: number) => unknown
iterable: AsyncIterable<I>,
mapper?: (item: I, index?: number) => unknown
)
```
Expand Down Expand Up @@ -1928,8 +1928,8 @@ import {asyncReplace} from 'lit/directives/async-replace.js';
```ts
asyncReplace(
iterable: AsyncIterable<Item>,
mapper?: (item: Item, index?: number) => unknown
iterable: AsyncIterable<I>,
mapper?: (item: I, index?: number) => unknown
)
```
Expand Down

0 comments on commit 47a8971

Please sign in to comment.