Skip to content

Commit 750affe

Browse files
committed
update
1 parent bbc318e commit 750affe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/eslint-plugin-svelte/src/rules/require-each-key.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export default createRule('require-each-key', {
1515
create(context) {
1616
return {
1717
SvelteEachBlock(node: AST.SvelteEachBlock) {
18-
// NO need a `key` if an each blocks without an item
18+
// No need a `key` if an each blocks without an item
1919
// see: https://svelte.dev/docs/svelte/each#Each-blocks-without-an-item
2020
if (node.context != null && node.key == null) {
2121
context.report({

0 commit comments

Comments
 (0)