From 1be7e36f85c927560e8c3c1eda05a7e43a66cd22 Mon Sep 17 00:00:00 2001 From: Vasiliy Ivanov <47692175+shitcoding@users.noreply.github.com> Date: Fri, 11 Nov 2022 11:35:13 +0300 Subject: [PATCH] Fixed typo in SetPasswordForm()'s docstring. --- django/contrib/auth/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/contrib/auth/forms.py b/django/contrib/auth/forms.py index 523830e8ee..d73d1c8495 100644 --- a/django/contrib/auth/forms.py +++ b/django/contrib/auth/forms.py @@ -354,7 +354,7 @@ class PasswordResetForm(forms.Form): class SetPasswordForm(forms.Form): """ - A form that lets a user change set their password without entering the old + A form that lets a user set their password without entering the old password """