From 0e52756d17fdcabe12ff5dcdc746e49b5aa5de3c Mon Sep 17 00:00:00 2001 From: Sina Atalay Date: Fri, 20 Oct 2023 20:34:59 +0200 Subject: [PATCH] fix typos --- rendercv/rendering.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rendercv/rendering.py b/rendercv/rendering.py index 637d497..9942de0 100644 --- a/rendercv/rendering.py +++ b/rendercv/rendering.py @@ -34,7 +34,7 @@ def markdown_to_latex(markdown_string: str) -> str: `#!pytjon "This is a \\textbf{bold} text with a \\hrefExternal{https://google.com}{\\textit{link}}."` Args: - value (str): The markdown string to convert. + markdown_string (str): The markdown string to convert. Returns: str: The LaTeX string. @@ -374,7 +374,7 @@ def run_latex(latex_file_path: str) -> str: Run TinyTeX with the given LaTeX file and generate a PDF. Args: - latexFilePath (str): The path to the LaTeX file to compile. + latex_file_path (str): The path to the LaTeX file to compile. """ start_time = time.time() logger.info("Running TinyTeX to generate the PDF has started.")