From bf08f5a1392e7eb0b664adaa9101e67f0c685936 Mon Sep 17 00:00:00 2001 From: Robert Date: Tue, 14 Jul 2020 00:08:21 +0200 Subject: [PATCH] fixed command line args --- cloud.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cloud.py b/cloud.py index 15ab138..b2912e3 100644 --- a/cloud.py +++ b/cloud.py @@ -39,7 +39,7 @@ parser.add_argument("-v", "--verbose", action="store_true", parser.add_argument("-w", metavar="wordlist", type=str, help="The wordlist to use for weighting (Default english)") parser.add_argument("-min", metavar="min_freq", type=float, - help="The minimum frequency a word needs to have to be counted in % (Default 0)") + help="The minimum frequency a word needs to have to be counted in percent (Default 0)") parser.add_argument("-boost", metavar="freq_boost", type=float, help="The boost a word that isn't in the wordlist gets (Default 1)") parser.add_argument("-blow", metavar="freq_blow", type=float,