From fca9dc5ce2d829d55a136eec628f1daf5423100f Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Fri, 29 Dec 2023 21:40:12 -0600 Subject: [PATCH] Fix typo in truncation comment (#9318) --- python/ruff-ecosystem/ruff_ecosystem/check.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/ruff-ecosystem/ruff_ecosystem/check.py b/python/ruff-ecosystem/ruff_ecosystem/check.py index c888a58f00..983133b9a2 100644 --- a/python/ruff-ecosystem/ruff_ecosystem/check.py +++ b/python/ruff-ecosystem/ruff_ecosystem/check.py @@ -121,7 +121,7 @@ def markdown_check_result(result: Result) -> str: if len(" ".join(lines)) > GITHUB_MAX_COMMENT_LENGTH // 3: 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("") break