From 8a76e3e907ffaa19ae1cfdf7fbac9216b34c1617 Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Thu, 27 Feb 2025 01:40:43 +0900 Subject: [PATCH] chore: update convert_pitch_to_markdown.py preceeded -> preceded --- src/pitch/convert_pitch_to_markdown.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pitch/convert_pitch_to_markdown.py b/src/pitch/convert_pitch_to_markdown.py index dc486554c..70642b7da 100644 --- a/src/pitch/convert_pitch_to_markdown.py +++ b/src/pitch/convert_pitch_to_markdown.py @@ -107,7 +107,7 @@ def execute(cls, llm: LLM, user_prompt: str) -> 'ConvertPitchToMarkdown': markdown_content = response_content # Use the entire content if delimiters are missing logger.warning("Output delimiters not found in LLM response.") - # The bullet lists are supposed to be preceeded by 2 newlines. + # The bullet lists are supposed to be preceded by 2 newlines. # However often there is just 1 newline. # This fix makes sure there are 2 newlines before bullet lists. markdown_content = fix_bullet_lists(markdown_content)