We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b760cc commit 409705cCopy full SHA for 409705c
lib/rules/jsx-props-no-spread-multi.js
@@ -1,5 +1,5 @@
1
/**
2
- * @fileoverview Prevent JSX prop spreading the same value multiple times
+ * @fileoverview Prevent JSX prop spreading the same expression multiple times
3
* @author Simon Schick
4
*/
5
@@ -13,7 +13,7 @@ const report = require('../util/report');
13
// ------------------------------------------------------------------------------
14
15
const messages = {
16
- noMultiSpreading: 'Spreading the same value multiple times is forbidden',
+ noMultiSpreading: 'Spreading the same expression multiple times is forbidden',
17
};
18
19
0 commit comments