diff --git a/packages/eslint-config-airbnb-base/rules/style.js b/packages/eslint-config-airbnb-base/rules/style.js index 8403ebb75b..c988fe5f3a 100644 --- a/packages/eslint-config-airbnb-base/rules/style.js +++ b/packages/eslint-config-airbnb-base/rules/style.js @@ -293,7 +293,7 @@ module.exports = { // disallow un-paren'd mixes of different operators // https://eslint.org/docs/rules/no-mixed-operators 'no-mixed-operators': ['error', { - // the list of arthmetic groups disallows mixing `%` and `**` + // the list of arithmetic groups disallows mixing `%` and `**` // with other arithmetic operators. groups: [ ['%', '**'],