diff --git a/packages/eslint-plugin/src/rules/no-misused-promises.ts b/packages/eslint-plugin/src/rules/no-misused-promises.ts index 58051c660f2..890cea62ffc 100644 --- a/packages/eslint-plugin/src/rules/no-misused-promises.ts +++ b/packages/eslint-plugin/src/rules/no-misused-promises.ts @@ -540,7 +540,7 @@ function voidFunctionArguments( node.expression, ); - // If this is a array 'rest' parameter, check all of the argument indicies + // If this is a array 'rest' parameter, check all of the argument indices // from the current argument to the end. // Note - we currently do not support 'spread' arguments - adding support for them // is tracked in https://github.com/typescript-eslint/typescript-eslint/issues/5744