From 4b874e499ee4858ac3e6d3f7dec49fe2ba19fc28 Mon Sep 17 00:00:00 2001 From: Winni Neessen Date: Thu, 7 Mar 2024 21:51:52 +0100 Subject: [PATCH] Fix typos in 'implies' within command-line flags description The previous version misspelled 'implies' as 'imlies' for several command-line flags (-mN, -mS, -mU) in the apg.go file. This commit corrects these typos, ensuring clarity and better understanding of the program's functions and usage. --- cmd/apg/apg.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd/apg/apg.go b/cmd/apg/apg.go index 7a4c758..64b9373 100644 --- a/cmd/apg/apg.go +++ b/cmd/apg/apg.go @@ -141,9 +141,9 @@ Flags: -M [LUNSHClunshc] New style password flags - Note: new-style flags have higher priority than any of the old-style flags -mL NUMBER Minimum amount of lower-case characters (implies -L) - -mN NUMBER Minimum amount of numeric characters (imlies -N) - -mS NUMBER Minimum amount of special characters (imlies -S) - -mU NUMBER Minimum amount of upper-case characters (imlies -U) + -mN NUMBER Minimum amount of numeric characters (implies -N) + -mS NUMBER Minimum amount of special characters (implies -S) + -mU NUMBER Minimum amount of upper-case characters (implies -U) - Note: any of the "Minimum amount of" modes may result in extraordinarily long calculation times -C Enable complex password mode (implies -L -U -N -S and disables -H)