@@ -32,7 +32,7 @@ public FindSymbolVisitor(
32
32
/// Checks to see if this command ast is the symbol we are looking for.
33
33
/// </summary>
34
34
/// <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,
36
36
/// or a decision to continue if it wasn't found</returns>
37
37
public override AstVisitAction VisitCommand ( CommandAst commandAst )
38
38
{
@@ -55,7 +55,7 @@ public override AstVisitAction VisitCommand(CommandAst commandAst)
55
55
/// Checks to see if this function definition is the symbol we are looking for.
56
56
/// </summary>
57
57
/// <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,
59
59
/// or a decision to continue if it wasn't found</returns>
60
60
public override AstVisitAction VisitFunctionDefinition ( FunctionDefinitionAst functionDefinitionAst )
61
61
{
@@ -94,7 +94,7 @@ public override AstVisitAction VisitFunctionDefinition(FunctionDefinitionAst fun
94
94
/// Checks to see if this command parameter is the symbol we are looking for.
95
95
/// </summary>
96
96
/// <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,
98
98
/// or a decision to continue if it wasn't found</returns>
99
99
public override AstVisitAction VisitCommandParameter ( CommandParameterAst commandParameterAst )
100
100
{
@@ -113,7 +113,7 @@ public override AstVisitAction VisitCommandParameter(CommandParameterAst command
113
113
/// Checks to see if this variable expression is the symbol we are looking for.
114
114
/// </summary>
115
115
/// <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,
117
117
/// or a decision to continue if it wasn't found</returns>
118
118
public override AstVisitAction VisitVariableExpression ( VariableExpressionAst variableExpressionAst )
119
119
{
0 commit comments