0
0
mirror of https://github.com/django/django.git synced 2024-11-30 15:10:46 +01:00

Fixed #3956 -- Minor typo in template docs. Thanks, Nick Fishman.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@4998 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Russell Keith-Magee 2007-04-12 11:12:45 +00:00
parent 247bed848f
commit 49ae68925c

View File

@ -702,11 +702,11 @@ Example::
Note that you can backslash-escape a format string if you want to use the Note that you can backslash-escape a format string if you want to use the
"raw" value. In this example, "f" is backslash-escaped, because otherwise "raw" value. In this example, "f" is backslash-escaped, because otherwise
"f" is a format string that displays the time. The "o" doesn't need to be "f" is a format string that displays the time. The "o" doesn't need to be
escaped, because it's not a format character.:: escaped, because it's not a format character::
It is the {% now "jS o\f F" %} It is the {% now "jS o\f F" %}
(Displays "It is the 4th of September" %} This would display as "It is the 4th of September".
regroup regroup
~~~~~~~ ~~~~~~~