Skip to content

Commit

Permalink
Fixed #5158 -- Minor typo in newforms docs. Thanks, hayley <djangocod…
Browse files Browse the repository at this point in the history
…e@vortex.cx>.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@5888 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
freakboy3742 committed Aug 15, 2007
1 parent 69cf1bb commit 543ab12
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/newforms.txt
Expand Up @@ -1483,9 +1483,9 @@ just use the 'widget' argument on the field definition. For example::
class CommentForm(forms.Form):
name = forms.CharField()
url = forms.URLField()
comment = forms.CharField(widget=forms.TextArea)
comment = forms.CharField(widget=forms.Textarea)

This would specify a form with a comment that uses a larger TextArea widget,
This would specify a form with a comment that uses a larger Textarea widget,
rather than the default TextInput widget.

Customizing widget instances
Expand Down

0 comments on commit 543ab12

Please sign in to comment.