From 60ba3b307fd5e16cd0f68f0533e982a66ce5877b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kamil=20=C5=9Aliwak?= Date: Thu, 28 Oct 2021 17:34:57 +0200 Subject: [PATCH] isolate_tests: Fix typo in script description --- scripts/isolate_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/isolate_tests.py b/scripts/isolate_tests.py index 1e2170e82..4abe6a0bd 100755 --- a/scripts/isolate_tests.py +++ b/scripts/isolate_tests.py @@ -134,7 +134,7 @@ def extract_and_write(path, language): if __name__ == '__main__': script_description = ( "Reads Solidity, C++ or RST source files and extracts compilable solidity and yul code blocks from them. " - "Can be used to generate test cases to validade code examples. " + "Can be used to generate test cases to validate code examples. " ) parser = ArgumentParser(description=script_description)