diff --git a/pr_agent/algo/utils.py b/pr_agent/algo/utils.py
index 82a5b782..b5837c5c 100644
--- a/pr_agent/algo/utils.py
+++ b/pr_agent/algo/utils.py
@@ -234,9 +234,9 @@ def convert_to_markdown_v2(output_data: dict,
if gfm_supported:
markdown_text += f"
"
if is_value_no(value):
- markdown_text += f"{emoji} No ToDo sections"
+ markdown_text += f"{emoji} No TODO sections"
else:
- markdown_text += f"{emoji} ToDo sections
\n\n"
+ markdown_text += f"{emoji} TODO sections
\n\n"
if isinstance(value, list):
markdown_text += "\n"
for todo_item in value:
@@ -247,9 +247,9 @@ def convert_to_markdown_v2(output_data: dict,
markdown_text += f" |
\n"
else:
if is_value_no(value):
- markdown_text += f"### {emoji} No ToDo sections\n\n"
+ markdown_text += f"### {emoji} No TODO sections\n\n"
else:
- markdown_text += f"### {emoji} ToDo sections\n\n"
+ markdown_text += f"### {emoji} TODO sections\n\n"
if isinstance(value, list):
for todo_item in value:
markdown_text += f"- {format_todo_item(todo_item)}\n"