Skip to content

Commit ebadeb2

Browse files
committed
Fix comment
1 parent 93b3429 commit ebadeb2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Source/Private/SetModuleContent.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ function SetModuleContent {
4646
foreach($file in $SourceFile) {
4747
if($SourceName = Resolve-Path $file -Relative -ErrorAction SilentlyContinue) {
4848
Write-Verbose "Adding $SourceName"
49-
# Setting offset to -1 because of the new line we're adding
50-
# because this is needed for the code coverage.
49+
# Setting offset to -1 because of the new line we're adding,
50+
# this is needed for the code coverage calculation.
5151
$SetContent.Process("#Region '$SourceName' -1`n")
5252
Get-Content $SourceName -OutVariable source | ForEach-Object { $SetContent.Process($_) }
5353
$SetContent.Process("#EndRegion '$SourceName' $($Source.Count+1)")

0 commit comments

Comments
 (0)