Opened 18 years ago
Closed 18 years ago
#6757 closed (fixed)
Minor typo in docs/newforms.txt: forgot a closing parenthesis
| Reported by: | Owned by: | nobody | |
|---|---|---|---|
| Component: | Documentation | Version: | dev |
| Severity: | Keywords: | ||
| Cc: | Triage Stage: | Unreviewed | |
| Has patch: | yes | Needs documentation: | no |
| Needs tests: | no | Patch needs improvement: | no |
| Easy pickings: | no | UI/UX: | no |
Description
Diff patch is below.
Index: docs/newforms.txt
===================================================================
--- docs/newforms.txt (revision 7224)
+++ docs/newforms.txt (working copy)
@@ -1564,7 +1564,7 @@
Note that any errors raised by your ``Form.clean()`` override will not
be associated with any field in particular. They go into a special
- "field" (called ``__all__``, which you can access via the
+ "field" (called ``__all__``), which you can access via the
``non_field_errors()`` method if you need to.
These methods are run in the order given above, one field at a time. That is,
Note:
See TracTickets
for help on using tickets.
(In [7227]) Fixed #6757 -- Corrected typo in newforms docs. Thanks, Atul Varma <varmaa@…>.