Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit dd7c824

Browse files
committedMar 4, 2025·
Fix bad indentation
1 parent fff0bbe commit dd7c824

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed
 

‎src/PowerShellEditorServices/Services/TextDocument/RenameService.cs

+1-2
Original file line numberDiff line numberDiff line change
@@ -556,8 +556,7 @@ public ScriptPositionAdapter(ScriptPosition position) : this((IScriptPosition)po
556556
public ScriptPositionAdapter(Position position) : this(position.Line + 1, position.Character + 1) { }
557557

558558
public static implicit operator ScriptPositionAdapter(Position position) => new(position);
559-
public static implicit operator Position(ScriptPositionAdapter scriptPosition) => new
560-
(
559+
public static implicit operator Position(ScriptPositionAdapter scriptPosition) => new(
561560
scriptPosition.position.LineNumber - 1, scriptPosition.position.ColumnNumber - 1
562561
);
563562

0 commit comments

Comments
 (0)
Please sign in to comment.