We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1625ac0 commit 5a76336Copy full SHA for 5a76336
Source/Public/ConvertTo-SourceLineNumber.ps1
@@ -72,7 +72,7 @@ function ConvertTo-SourceLineNumber {
72
# These are all negative, because BinarySearch returns the match *after* the line we're searching for
73
# We need the match *before* the line we're searching for
74
# And we need it as a zero-based index:
75
- $index = -2 - [Array]::BinarySearch($hit.StartLineNumber, $SourceLineNumber )
+ $index = -2 - [Array]::BinarySearch($hit.StartLineNumber, $SourceLineNumber)
76
$Source = $hit[$index]
77
78
if($Passthru) {
0 commit comments