Skip to content

Commit 409705c

Browse files
author
Simon Schick
committed
fixup! feat(rules): add jsx-props-no-spread-multi
1 parent 8b760cc commit 409705c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/rules/jsx-props-no-spread-multi.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @fileoverview Prevent JSX prop spreading the same value multiple times
2+
* @fileoverview Prevent JSX prop spreading the same expression multiple times
33
* @author Simon Schick
44
*/
55

@@ -13,7 +13,7 @@ const report = require('../util/report');
1313
// ------------------------------------------------------------------------------
1414

1515
const messages = {
16-
noMultiSpreading: 'Spreading the same value multiple times is forbidden',
16+
noMultiSpreading: 'Spreading the same expression multiple times is forbidden',
1717
};
1818

1919
/**

0 commit comments

Comments
 (0)