From d2625f545f53252314aee0c36818f52a52f7d321 Mon Sep 17 00:00:00 2001 From: Tris <38221328+TrizlyBear@users.noreply.github.com> Date: Fri, 7 May 2021 00:16:14 +0200 Subject: [PATCH] Fixed typo in security.py documentation "check" was missing a capitalized C. --- src/werkzeug/security.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/werkzeug/security.py b/src/werkzeug/security.py index 9629c1980..e23040af9 100644 --- a/src/werkzeug/security.py +++ b/src/werkzeug/security.py @@ -202,7 +202,7 @@ def generate_password_hash( def check_password_hash(pwhash: str, password: str) -> bool: - """check a password against a given salted and hashed password value. + """Check a password against a given salted and hashed password value. In order to support unsalted legacy passwords this method supports plain text passwords, md5 and sha1 hashes (both salted and unsalted).