diff options
author | Phillip Kent <phillip.kent@gmail.com> | 2014-07-18 15:47:50 +0100 |
---|---|---|
committer | Phillip Kent <phillip.kent@gmail.com> | 2014-07-18 15:47:50 +0100 |
commit | 73e531af67f534b95b1dae1183a916eb5969c9d0 (patch) | |
tree | 395e8b8f43d509514a40bbcb6824f6c089c9014c | |
parent | 2bf87f8b31ed60a7d447cf9e63dd14df949ad969 (diff) | |
download | data_hacks-73e531af67f534b95b1dae1183a916eb5969c9d0.zip data_hacks-73e531af67f534b95b1dae1183a916eb5969c9d0.tar.gz data_hacks-73e531af67f534b95b1dae1183a916eb5969c9d0.tar.bz2 |
Update histogram.py
fixed typos in help message
-rw-r--r-- | data_hacks/histogram.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data_hacks/histogram.py b/data_hacks/histogram.py index 687021a..657ddcc 100644 --- a/data_hacks/histogram.py +++ b/data_hacks/histogram.py @@ -210,7 +210,7 @@ if __name__ == "__main__": parser.add_option("-B", "--custom-buckets", dest="custbuckets", help="Comma seperated list of bucket edges for the histogram") parser.add_option("--no-mvsd", dest="mvsd", action="store_false", default=True, - help="Dissable the calculation of Mean, Vairance and SD. (improves performance)") + help="Disable the calculation of Mean, Variance and SD (improves performance)") (options, args) = parser.parse_args() if sys.stdin.isatty(): |