contrib/revsetbenchmarks.py
changeset 26781 1aee2ab0f902
parent 26034 1d829f802fab
child 27073 b9fc042168a4
--- a/contrib/revsetbenchmarks.py	Wed Oct 14 03:30:27 2015 -0400
+++ b/contrib/revsetbenchmarks.py	Sat Oct 17 00:58:46 2015 +0200
@@ -61,7 +61,7 @@
     except CalledProcessError as exc:
         print >> sys.stderr, 'abort: cannot run revset benchmark: %s' % exc.cmd
         if exc.output is None:
-            print >> sys.stderr, '(no ouput)'
+            print >> sys.stderr, '(no output)'
         else:
             print >> sys.stderr, exc.output
         return None
@@ -114,7 +114,7 @@
 def getfactor(main, other, field, sensitivity=0.05):
     """return the relative factor between values for 'field' in main and other
 
-    Return None if the factor is insignicant (less than <sensitivity>
+    Return None if the factor is insignificant (less than <sensitivity>
     variation)."""
     factor = 1
     if main is not None:
@@ -218,7 +218,7 @@
 
 helptext="""This script will run multiple variants of provided revsets using
 different revisions in your mercurial repository. After the benchmark are run
-summary output is provided. Use itto demonstrate speed improvements or pin
+summary output is provided. Use it to demonstrate speed improvements or pin
 point regressions. Revsets to run are specified in a file (or from stdin), one
 revsets per line. Line starting with '#' will be ignored, allowing insertion of
 comments."""