Django

Code

Changeset 5888

Show
Ignore:
Timestamp:
08/14/07 19:19:53 (1 year ago)
Author:
russellm
Message:

Fixed #5158 -- Minor typo in newforms docs. Thanks, hayley <djangocode@vortex.cx>.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/newforms.txt

    r5867 r5888  
    14841484        name = forms.CharField() 
    14851485        url = forms.URLField() 
    1486         comment = forms.CharField(widget=forms.TextArea) 
     1486        comment = forms.CharField(widget=forms.Textarea) 
    14871487         
    1488 This would specify a form with a comment that uses a larger TextArea widget,  
     1488This would specify a form with a comment that uses a larger Textarea widget,  
    14891489rather than the default TextInput widget. 
    14901490