Opened 18 years ago

Closed 18 years ago

Last modified 18 years ago

#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: 

Change History (1)

comment:1 by Jacob, 18 years ago

Resolution: fixed
Status: newclosed

(In [1929]) Fixed #1206 -- fixed a small typo in docs/generic_views.txt (thanks, Matt)

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