summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2014-09-25 15:09:12 +0200
committerClaude Paroz <claude@2xlibre.net>2014-09-25 15:10:14 +0200
commitb5d60927078743b68ee13795601c694a1d837e1c (patch)
tree50e00afdd2af178cd9b1889a40617782c4a5df63 /docs
parentd7b32d31205834262758ca5f48e5fe3a453f7ad3 (diff)
[1.7.x] Replaced input by textarea in forms docs
Backport of 5066fda34d from master.
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/forms/index.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/topics/forms/index.txt b/docs/topics/forms/index.txt
index 49a0f15c2f..7eaf346b5c 100644
--- a/docs/topics/forms/index.txt
+++ b/docs/topics/forms/index.txt
@@ -423,9 +423,9 @@ type="text">``.
In most cases, the field will have a sensible default widget. For example, by
default, a :class:`CharField` will have a :class:`TextInput` widget, that
-produces an ``<input type="text">`` in the HTML. If you needed
-``<input type="textarea">`` instead, you'd specify the appropriate widget when
-defining your form field, as we have done for the ``message`` field.
+produces an ``<input type="text">`` in the HTML. If you needed ``<textarea>``
+instead, you'd specify the appropriate widget when defining your form field,
+as we have done for the ``message`` field.
Field data
^^^^^^^^^^