diff options
| author | antoliny0919 <antoliny0919@gmail.com> | 2024-11-07 09:39:29 +0900 |
|---|---|---|
| committer | Sarah Boyce <42296566+sarahboyce@users.noreply.github.com> | 2024-11-11 14:52:08 +0100 |
| commit | d71c588d83e58e83bdd9ea8bf03724d10f02a8bd (patch) | |
| tree | 41b7ec92f4d9ebfe70f94de6e1ed4c03972637bd | |
| parent | 4c079918e853c4e6ddfc4bd52e87992f7281094b (diff) | |
[5.1.x] Updated validate_slug regular expression in form validation docs.
Outdated since 014247ad1922931a2f17beaf6249247298e9dc44.
Backport of 63dbe30d3363715deaf280214d75b03f6d65a571 from main.
| -rw-r--r-- | docs/ref/forms/validation.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/forms/validation.txt b/docs/ref/forms/validation.txt index 7a037eaf75..614b345b5a 100644 --- a/docs/ref/forms/validation.txt +++ b/docs/ref/forms/validation.txt @@ -254,7 +254,7 @@ Common cases such as validating against an email or a regular expression can be handled using existing validator classes available in Django. For example, ``validators.validate_slug`` is an instance of a :class:`~django.core.validators.RegexValidator` constructed with the first -argument being the pattern: ``^[-a-zA-Z0-9_]+$``. See the section on +argument being the pattern: ``^[-a-zA-Z0-9_]+\Z``. See the section on :doc:`writing validators </ref/validators>` to see a list of what is already available and for an example of how to write a validator. |
