Fixed #2235 -- corrected a couple of typos pointed out by jvinet@zeroflux.org.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@3205 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Malcolm Tredinnick 2006-06-26 03:02:42 +00:00
parent 2211eddb36
commit 25ffce4c83
1 changed files with 2 additions and 2 deletions

View File

@ -783,7 +783,7 @@ Our earlier ``current_time`` function could thus be written like this::
In Python 2.4, the decorator syntax also works:: In Python 2.4, the decorator syntax also works::
@simple_tag @register.simple_tag
def do_current_time(token): def do_current_time(token):
... ...
@ -844,7 +844,7 @@ loader, we'd register the tag like this::
As always, Python 2.4 decorator syntax works as well, so we could have As always, Python 2.4 decorator syntax works as well, so we could have
written:: written::
@inclusion_tag('results.html') @register.inclusion_tag('results.html')
def show_results(poll): def show_results(poll):
... ...