Fix typo in truncation comment (#9318)

This commit is contained in:
Zanie Blue 2023-12-29 21:40:12 -06:00 committed by GitHub
parent 94727996e8
commit fca9dc5ce2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -121,7 +121,7 @@ def markdown_check_result(result: Result) -> str:
if len(" ".join(lines)) > GITHUB_MAX_COMMENT_LENGTH // 3: if len(" ".join(lines)) > GITHUB_MAX_COMMENT_LENGTH // 3:
lines.append("") lines.append("")
lines.append( lines.append(
"_... Truncated remaining completed projected reports due to GitHub comment length restrictions_" "_... Truncated remaining completed project reports due to GitHub comment length restrictions_"
) )
lines.append("") lines.append("")
break break