From 599757252ee40a4b8cd41237e46d4b618d996176 Mon Sep 17 00:00:00 2001 From: Maxim Evtush <154841002+maximevtush@users.noreply.github.com> Date: Mon, 30 Dec 2024 22:34:42 +0100 Subject: [PATCH] fix: spelling mistakes --- .../src/solidity-analyzer/modules/staticAnalysisCommon.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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