@@ -32,7 +32,7 @@ public FindSymbolVisitor(
3232 /// Checks to see if this command ast is the symbol we are looking for.
3333 /// </summary>
3434 /// <param name="commandAst">A CommandAst object in the script's AST</param>
35- /// <returns>A descion to stop searching if the right symbol was found,
35+ /// <returns>A decision to stop searching if the right symbol was found,
3636 /// or a decision to continue if it wasn't found</returns>
3737 public override AstVisitAction VisitCommand ( CommandAst commandAst )
3838 {
@@ -55,7 +55,7 @@ public override AstVisitAction VisitCommand(CommandAst commandAst)
5555 /// Checks to see if this function definition is the symbol we are looking for.
5656 /// </summary>
5757 /// <param name="functionDefinitionAst">A functionDefinitionAst object in the script's AST</param>
58- /// <returns>A descion to stop searching if the right symbol was found,
58+ /// <returns>A decision to stop searching if the right symbol was found,
5959 /// or a decision to continue if it wasn't found</returns>
6060 public override AstVisitAction VisitFunctionDefinition ( FunctionDefinitionAst functionDefinitionAst )
6161 {
@@ -94,7 +94,7 @@ public override AstVisitAction VisitFunctionDefinition(FunctionDefinitionAst fun
9494 /// Checks to see if this command parameter is the symbol we are looking for.
9595 /// </summary>
9696 /// <param name="commandParameterAst">A CommandParameterAst object in the script's AST</param>
97- /// <returns>A descion to stop searching if the right symbol was found,
97+ /// <returns>A decision to stop searching if the right symbol was found,
9898 /// or a decision to continue if it wasn't found</returns>
9999 public override AstVisitAction VisitCommandParameter ( CommandParameterAst commandParameterAst )
100100 {
@@ -113,7 +113,7 @@ public override AstVisitAction VisitCommandParameter(CommandParameterAst command
113113 /// Checks to see if this variable expression is the symbol we are looking for.
114114 /// </summary>
115115 /// <param name="variableExpressionAst">A VariableExpressionAst object in the script's AST</param>
116- /// <returns>A descion to stop searching if the right symbol was found,
116+ /// <returns>A decision to stop searching if the right symbol was found,
117117 /// or a decision to continue if it wasn't found</returns>
118118 public override AstVisitAction VisitVariableExpression ( VariableExpressionAst variableExpressionAst )
119119 {
0 commit comments