Skip to content

Commit 54351c0

Browse files
committed
correct spelling
1 parent 047ae5e commit 54351c0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Engine/FindAstPositionVisitor.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ namespace Microsoft.Windows.PowerShell.ScriptAnalyzer
99
/// Provides an efficient way to find the position in the AST corresponding to a given script position.
1010
/// </summary>
1111
#if !(PSV3 || PSV4)
12-
internal class FindAstPostitionVisitor : AstVisitor2
12+
internal class FindAstPositionVisitor : AstVisitor2
1313
#else
14-
internal class FindAstPostitionVisitor : AstVisitor
14+
internal class FindAstPositionVisitor : AstVisitor
1515
#endif
1616
{
1717
private IScriptPosition searchPosition;
@@ -22,10 +22,10 @@ internal class FindAstPostitionVisitor : AstVisitor
2222
public Ast AstPosition { get; private set; }
2323

2424
/// <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.
2626
/// </summary>
2727
/// <param name="position">The script position to search for.</param>
28-
public FindAstPostitionVisitor(IScriptPosition position)
28+
public FindAstPositionVisitor(IScriptPosition position)
2929
{
3030
this.searchPosition = position;
3131
}

0 commit comments

Comments
 (0)