diff --git a/libs/remix-analyzer/src/solidity-analyzer/modules/staticAnalysisCommon.ts b/libs/remix-analyzer/src/solidity-analyzer/modules/staticAnalysisCommon.ts index 10a4a1761a..4b4f82d471 100644 --- a/libs/remix-analyzer/src/solidity-analyzer/modules/staticAnalysisCommon.ts +++ b/libs/remix-analyzer/src/solidity-analyzer/modules/staticAnalysisCommon.ts @@ -409,7 +409,7 @@ function getLibraryCallContractName (node: FunctionCallAstNode): string | undefi * library set{...} * contract foo { * ... - * function () { set.union() => uinion} + * function () { set.union() => union} * @func {ASTNode} function call node * @return {string} name of function called on the library */ @@ -1040,7 +1040,7 @@ function matches (...fnArgs: any[]): string { /** * Finds first node of a certain type under a specific node. - * @node {AstNode} node to start form + * @node {AstNode} node to start from * @type {String} Type the ast node should have * @return {AstNode} null or node found * Note: developed keeping identifier node search in mind to get first identifier node from left in subscope