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.
This commit is contained in:
Winni Neessen 2024-03-07 21:51:52 +01:00
parent b2d6a3418e
commit 4b874e499e
Signed by: wneessen
GPG key ID: 5F3AF39B820C119D

View file

@ -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)