summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2009-03-24 12:04:43 +0000
committerRussell Keith-Magee <russell@keith-magee.com>2009-03-24 12:04:43 +0000
commitade3dcb4947e93752e5759c1bd6e6a26e9bfcb8e (patch)
tree1cea6e682d2b77625181f0fbdb7073ca63250735 /docs
parentc2e4e54eb695b895c830f636251a4318826021ba (diff)
[1.0.X] Fixed #10437 -- Corrected typo in Widget media example. Thanks to Manuel Saelices.
Merge of r10149 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@10157 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/forms/media.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/forms/media.txt b/docs/topics/forms/media.txt
index 12181fcf06..287d4c6931 100644
--- a/docs/topics/forms/media.txt
+++ b/docs/topics/forms/media.txt
@@ -152,7 +152,7 @@ The FancyCalendar widget inherits all the media from it's parent widget. If
you don't want media to be inherited in this way, add an ``extend=False``
declaration to the media declaration::
- class FancyCalendar(Calendar):
+ class FancyCalendarWidget(CalendarWidget):
class Media:
extend = False
css = {