From efdbc4cdc5f9b73113360bc49b4eb76b7c663424 Mon Sep 17 00:00:00 2001 From: Jeff Brower Date: Tue, 29 Oct 2024 10:27:57 -0400 Subject: [PATCH] Fix typo in README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ba6b861..0b76e55 100644 --- a/README.md +++ b/README.md @@ -147,7 +147,7 @@ passwordStrength('myPassword', yourCustomOptions) | (?=.*[A-Z]) | The string must contain at least 1 uppercase alphabetical character | | (?=.*[0-9]) | The string must contain at least 1 numeric character | | (?=.[!"#$%&'()*+,-./:;<=>?@[\\]^_`{\|}~])) | The string must contain at least one special character | -| (?=.{10,}) | The string must be eight characters or longer for Strong strength | +| (?=.{10,}) | The string must be ten characters or longer for Strong strength | | (?=.{8,}) | The string must be eight characters or longer for Medium strength | | (?=.{6,}) | Mininum of 6 characters for Weak strength | @@ -177,4 +177,4 @@ I'll be glad if you give this project a ★ on [Github](https://github.com/deani *** Kudos to [@Ennoriel](https://github.com/Ennoriel) and his efforts for making v2.x.x possible! ### License -This project is licensed under the MIT License - see the [LICENSE.md](https://github.com/deanilvincent/check-password-strength/blob/master/LICENSE.md/) file for details. \ No newline at end of file +This project is licensed under the MIT License - see the [LICENSE.md](https://github.com/deanilvincent/check-password-strength/blob/master/LICENSE.md/) file for details.