From 54dfa602f62e6d183d57d60d5fdd417a263f479e Mon Sep 17 00:00:00 2001 From: Pierre Maoui Date: Wed, 21 Nov 2018 17:47:42 +0100 Subject: [PATCH] Fix: Typo in function comment parameters (#11111) --- lib/util/source-code.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/util/source-code.js b/lib/util/source-code.js index dd45f6112ad..765fde72598 100644 --- a/lib/util/source-code.js +++ b/lib/util/source-code.js @@ -87,7 +87,7 @@ class SourceCode extends TokenStore { * @param {string|Object} textOrConfig - The source code text or config object. * @param {string} textOrConfig.text - The source code text. * @param {ASTNode} textOrConfig.ast - The Program node of the AST representing the code. This AST should be created from the text that BOM was stripped. - * @param {Object|null} textOrConfig.parserServices - The parser srevices. + * @param {Object|null} textOrConfig.parserServices - The parser services. * @param {ScopeManager|null} textOrConfig.scopeManager - The scope of this source code. * @param {Object|null} textOrConfig.visitorKeys - The visitor keys to traverse AST. * @param {ASTNode} [astIfNoConfig] - The Program node of the AST representing the code. This AST should be created from the text that BOM was stripped.