From c45cde93efd7dd5d73c332fa042987dfd318e6cd Mon Sep 17 00:00:00 2001 From: mrT23 Date: Mon, 9 Dec 2024 09:04:53 +0200 Subject: [PATCH] docs: fix typos in improve.md documentation --- docs/docs/tools/improve.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docs/tools/improve.md b/docs/docs/tools/improve.md index 48e70419..600422d7 100644 --- a/docs/docs/tools/improve.md +++ b/docs/docs/tools/improve.md @@ -111,7 +111,7 @@ Examples for possible instructions: [pr_code_suggestions] extra_instructions="""\ (1) Answer in japanese -(2) Don't suggest to add try-excpet block +(2) Don't suggest to add try-except block (3) Ignore changes in toml files ... """ @@ -131,7 +131,7 @@ best practice`. Example for a python `best_practices.md` content can: ```markdown ## Project best practices -- Make sure that I/O operation are encapsulated in a try-except block +- Make sure that I/O operations are encapsulated in a try-except block - Use the `logging` module for logging instead of `print` statements - Use `is` and `is not` to compare with `None` - Use `if __name__ == '__main__':` to run the code only when the script is executed