Opened 11 years ago

Closed 11 years ago

Last modified 11 years ago

#20823 closed Uncategorized (fixed)

Typo on form and field validation doc page

Reported by: anonymous Owned by: nobody
Component: Documentation Version: dev
Severity: Normal Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: yes UI/UX: no

Description

Typo: Error has 3 Rs

https://docs.djangoproject.com/en/dev/ref/forms/validation/

Putting it all together:

raise ValidationErrror(
    _('Invalid value: %(value)s'),
    code='invalid',
    params={'value': '42'},
)

Change History (2)

comment:1 by Tim Graham <timograham@…>, 11 years ago

Resolution: fixed
Status: newclosed

In e82846a9aa38bcc3db7e1820d11c7fa9a5f79449:

[1.6.x] Fixed #20823 -- Typo in docs/ref/forms/validation.txt

Backport of 05ea5a2139 from master

comment:2 by Tim Graham <timograham@…>, 11 years ago

In 05ea5a213935b6f1c02f634b6a7674bd2f296458:

Fixed #20823 -- Typo in docs/ref/forms/validation.txt

Note: See TracTickets for help on using tickets.
Back to Top