From 51522f99c4bc2b94a6ff35531c0671184775ab27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kamil=20=C5=9Aliwak?= Date: Fri, 3 Jul 2020 21:20:29 +0200 Subject: [PATCH 1/2] Fix mismatched docstrings in some of the scripts --- scripts/get_version.sh | 2 +- scripts/test_emscripten.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/get_version.sh b/scripts/get_version.sh index 3df2b4c40..180ff3cd6 100755 --- a/scripts/get_version.sh +++ b/scripts/get_version.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash #------------------------------------------------------------------------------ -# Bash script to execute the Solidity tests. +# Prints version of the Solidity compiler that the source code corresponds to. # # The documentation for solidity is hosted at: # diff --git a/scripts/test_emscripten.sh b/scripts/test_emscripten.sh index 13eeeebde..980cee196 100755 --- a/scripts/test_emscripten.sh +++ b/scripts/test_emscripten.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash #------------------------------------------------------------------------------ -# Bash script to execute the Solidity tests. +# Bash script to execute the Solidity tests using the emscripten binary. # # The documentation for solidity is hosted at: # From 9b2c1970917c9810b8068e6b5ac57d660f991423 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kamil=20=C5=9Aliwak?= Date: Fri, 3 Jul 2020 21:21:15 +0200 Subject: [PATCH 2/2] Fix a typo in yul_converage script docstring --- scripts/yul_coverage.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/yul_coverage.sh b/scripts/yul_coverage.sh index d49065f69..c32dc9472 100755 --- a/scripts/yul_coverage.sh +++ b/scripts/yul_coverage.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash #------------------------------------------------------------------------------ -# Bash script to determine the percantage of tests that are compilable via Yul. +# Bash script to determine the percentage of tests that are compilable via Yul. # # Usage: # ./yul_coverage.sh [--no-stats] [--successful] [--internal-compiler-errors]