Opened 16 years ago

Closed 16 years ago

#6732 closed (fixed)

Typo in templates_python.txt: "must" missing between "module" and "contain"

Reported by: Atul Varma <varmaa@…> Owned by: nobody
Component: Documentation Version: dev
Severity: Keywords:
Cc: Triage Stage: Ready for checkin
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

Patch follows below; the diff is bigger than it should be because I had to re-wrap the lines.

Index: docs/templates_python.txt
===================================================================
--- docs/templates_python.txt	(revision 7195)
+++ docs/templates_python.txt	(working copy)
@@ -629,9 +629,10 @@
 Once you've created that Python module, you'll just have to write a bit of
 Python code, depending on whether you're writing filters or tags.
 
-To be a valid tag library, the module contain a module-level variable named
-``register`` that is a ``template.Library`` instance, in which all the tags and
-filters are registered. So, near the top of your module, put the following::
+To be a valid tag library, the module must contain a module-level variable
+named ``register`` that is a ``template.Library`` instance, in which all the
+tags and filters are registered. So, near the top of your module, put the
+following::
 
     from django import template
 

Attachments (1)

6732.diff (680 bytes ) - added by Thejaswi Puthraya 16 years ago.
converted description to patch

Download all attachments as: .zip

Change History (3)

by Thejaswi Puthraya, 16 years ago

Attachment: 6732.diff added

converted description to patch

comment:1 by Thejaswi Puthraya, 16 years ago

Has patch: set
Triage Stage: UnreviewedReady for checkin

Converted the description into a patch.

comment:2 by Gary Wilson, 16 years ago

Resolution: fixed
Status: newclosed

(In [7203]) Fixed #6732 -- Added missing word "must" in templates_python.txt docs, thanks Atul Varma.

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