Commit c51d000c authored by Adrian Holovaty's avatar Adrian Holovaty
Browse files

Fixed #7870 -- Fixed typo in docs/forms.txt. Bad form, whoever originally wrote that

git-svn-id: http://code.djangoproject.com/svn/django/trunk@8049 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent f5328f4c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2095,7 +2095,7 @@ the resulting Media object contains the union of the media from both files::

    >>> w1 = CalendarWidget()
    >>> w2 = OtherWidget()
    >>> print w1+w2
    >>> print w1.media + w2.media
    <link href="http://media.example.com/pretty.css" type="text/css" media="all" rel="stylesheet" />
    <script type="text/javascript" src="http://media.example.com/animations.js"></script>
    <script type="text/javascript" src="http://media.example.com/actions.js"></script>