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)