File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -9,9 +9,9 @@ namespace Microsoft.Windows.PowerShell.ScriptAnalyzer
9
9
/// Provides an efficient way to find the position in the AST corresponding to a given script position.
10
10
/// </summary>
11
11
#if ! ( PSV3 || PSV4 )
12
- internal class FindAstPostitionVisitor : AstVisitor2
12
+ internal class FindAstPositionVisitor : AstVisitor2
13
13
#else
14
- internal class FindAstPostitionVisitor : AstVisitor
14
+ internal class FindAstPositionVisitor : AstVisitor
15
15
#endif
16
16
{
17
17
private IScriptPosition searchPosition ;
@@ -22,10 +22,10 @@ internal class FindAstPostitionVisitor : AstVisitor
22
22
public Ast AstPosition { get ; private set ; }
23
23
24
24
/// <summary>
25
- /// Initializes a new instance of the <see cref="FindAstPostitionVisitor "/> class with the postition to search for.
25
+ /// Initializes a new instance of the <see cref="FindAstPositionVisitor "/> class with the postition to search for.
26
26
/// </summary>
27
27
/// <param name="position">The script position to search for.</param>
28
- public FindAstPostitionVisitor ( IScriptPosition position )
28
+ public FindAstPositionVisitor ( IScriptPosition position )
29
29
{
30
30
this . searchPosition = position ;
31
31
}
You can’t perform that action at this time.
0 commit comments