Merge pull request #12213 from ethereum/fix-typos

Fix two typos and a misnamed test
This commit is contained in:
chriseth 2021-10-29 13:51:47 +02:00 committed by GitHub
commit 408bd5fa62
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 2 additions and 2 deletions

View File

@ -46,7 +46,7 @@ source "${REPODIR}/scripts/common.sh"
# Test result output directory (CircleCI is reading test results from here)
mkdir -p test_results
# in case we run with ASAN enabled, we must increase stck size.
# in case we run with ASAN enabled, we must increase stack size.
ulimit -s 16384
get_logfile_basename() {

View File

@ -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)