#1206 closed defect (fixed)
Typo in generic views docs
Reported by: | matt | Owned by: | Jacob |
---|---|---|---|
Component: | Documentation | Version: | |
Severity: | normal | Keywords: | |
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
There's a minor typo in the generic views docs, here's a patch:
Index: /Users/mcroydon/django/django_src.trunk/docs/generic_views.txt =================================================================== --- /Users/mcroydon/django/django_src.trunk/docs/generic_views.txt (revision 1928) +++ /Users/mcroydon/django/django_src.trunk/docs/generic_views.txt (working copy) @@ -329,7 +329,7 @@ Uses the template ``app_label/module_name_form`` by default. This is the same template as the ``update_object`` view below. Your template can tell - the different by the presence or absence of ``{{ object }}`` in the + the difference by the presence or absence of ``{{ object }}`` in the context. Has the following template context:
Note:
See TracTickets
for help on using tickets.
(In [1929]) Fixed #1206 -- fixed a small typo in docs/generic_views.txt (thanks, Matt)