Skip to content

Commit 5a76336

Browse files
authored
Update ConvertTo-SourceLineNumber.ps1
removed unnecessary whitespace
1 parent 1625ac0 commit 5a76336

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/Public/ConvertTo-SourceLineNumber.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ function ConvertTo-SourceLineNumber {
7272
# These are all negative, because BinarySearch returns the match *after* the line we're searching for
7373
# We need the match *before* the line we're searching for
7474
# And we need it as a zero-based index:
75-
$index = -2 - [Array]::BinarySearch($hit.StartLineNumber, $SourceLineNumber )
75+
$index = -2 - [Array]::BinarySearch($hit.StartLineNumber, $SourceLineNumber)
7676
$Source = $hit[$index]
7777

7878
if($Passthru) {

0 commit comments

Comments
 (0)