diff --git a/bin/bin-env-util b/bin/bin-env-util
index b22cd0ce1a12683335b2b103ecfb9c033f7b24bd_YmluL2Jpbi1lbnYtdXRpbA==..08e3ebc449851d9ba6187375e9f7776bcd699831_YmluL2Jpbi1lbnYtdXRpbA== 100755
--- a/bin/bin-env-util
+++ b/bin/bin-env-util
@@ -1,6 +1,6 @@
 #!/usr/bin/env python3
 #
-# Small tool to manipulaote
+# Small tool to manipulate bin-envs
 import argparse
 import os
 import subprocess
@@ -42,7 +42,7 @@
 
 def setup_one(env_path, script):
     if not os.access(script, os.X_OK):
-        err(f'no executable setup scrip at: "{script}"')
+        err(f'no executable setup script at: "{script}"')
         return ERR_CODE_NO_SETUP_SCRIPT
     ret = create_empty(env_path, method="script")
     if ret != 0:
@@ -118,7 +118,7 @@
     ### bin-env-util setup-one-sh PATH SCRIPT
     cmd_parser = subparsers.add_parser(
         'setup-one',
-        help='create a new empty bin-env'
+        help='create a new bin-env with a setup script'
     )
     cmd_parser.add_argument(
         'PATH',
@@ -166,7 +166,7 @@
     ### bin-env-util set PATH KEY VALUE
     cmd_parser = subparsers.add_parser(
         'set',
-        help='Show a specific bin-env variable'
+        help='Set the value of a specific bin-env variable'
     )
     cmd_parser.add_argument(
         'PATH',
@@ -184,7 +184,7 @@
     ### bin-env-util del PATH KEY
     cmd_parser = subparsers.add_parser(
         'del',
-        help='Show a specific bin-env variable'
+        help='Delete a specific bin-env variable'
     )
     cmd_parser.add_argument(
         'PATH',
diff --git a/bin/diff-result b/bin/diff-result
index b22cd0ce1a12683335b2b103ecfb9c033f7b24bd_YmluL2RpZmYtcmVzdWx0..08e3ebc449851d9ba6187375e9f7776bcd699831_YmluL2RpZmYtcmVzdWx0 100755
--- a/bin/diff-result
+++ b/bin/diff-result
@@ -1,6 +1,6 @@
 #!/usr/bin/env python3
 #
-# Small tool to manipulaote
+# Small tool to compare two results
 import argparse
 import collections
 import os
@@ -89,7 +89,7 @@
 
     cmd_parser.add_argument(
         'OLD_RESULT',
-        help="the path to the binary environment directory",
+        help="path to the old result",
     )
     cmd_parser.add_argument(
         'NEW_RESULT',
@@ -93,7 +93,7 @@
     )
     cmd_parser.add_argument(
         'NEW_RESULT',
-        help="the path to the data environment directory",
+        help="path to the new result",
     )
 
     cmd_parser.add_argument('--full', action='store_const', const=True)
diff --git a/bin/env-desc b/bin/env-desc
index b22cd0ce1a12683335b2b103ecfb9c033f7b24bd_YmluL2Vudi1kZXNj..08e3ebc449851d9ba6187375e9f7776bcd699831_YmluL2Vudi1kZXNj 100755
--- a/bin/env-desc
+++ b/bin/env-desc
@@ -1,6 +1,6 @@
 #!/usr/bin/env python3
 #
-# Small tool to manipulaote
+# Small utility to manipulate environment description
 import os
 import sys
 
diff --git a/bin/result-compare b/bin/result-compare
index b22cd0ce1a12683335b2b103ecfb9c033f7b24bd_YmluL3Jlc3VsdC1jb21wYXJl..08e3ebc449851d9ba6187375e9f7776bcd699831_YmluL3Jlc3VsdC1jb21wYXJl 100755
--- a/bin/result-compare
+++ b/bin/result-compare
@@ -86,7 +86,7 @@
 
 
 def _parsers():
-    cmd_parser = argparse.ArgumentParser(prog='result-search')
+    cmd_parser = argparse.ArgumentParser(prog='result-compare')
     return cmd_parser