Skip to content

Commit 41cbece

Browse files
fix: use single backtick for code span delimiter repetition
Agent-Logs-Url: https://github.com/PSModule/Get-PSModuleSettings/sessions/0d571791-16d5-4312-a8fc-200cccf5df2b Co-authored-by: MariusStorhaug <17722253+MariusStorhaug@users.noreply.github.com>
1 parent 091f664 commit 41cbece

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ LogGroup 'Calculate Job Run Conditions:' {
301301
foreach ($m in $backtickMatches) {
302302
if ($m.Value.Length -gt $maxRun) { $maxRun = $m.Value.Length }
303303
}
304-
$codeDelimiter = '``' * ($maxRun + 1)
304+
$codeDelimiter = '`' * ($maxRun + 1)
305305
"| ${codeDelimiter}${escapedPattern}${codeDelimiter} | Matches files where path matches this pattern |"
306306
}) -join "`n"
307307
$commentBody = @"

0 commit comments

Comments
 (0)