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:09:12 +0200
commit5066fda34d88a61211c204617996297af9fbb119 (patch)
treea2dc2e8e1c029077e2aea3d26a801785ce9c972b /docs
parent3a463995433a380c9421eeece90b977e91bacc5b (diff)
Replaced input by textarea in forms docs
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 2b0cfe6946..215b0d74c2 100644
--- a/docs/topics/forms/index.txt
+++ b/docs/topics/forms/index.txt
@@ -417,9 +417,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
^^^^^^^^^^