summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2017-05-29 18:00:47 -0400
committerTim Graham <timograham@gmail.com>2017-05-29 18:01:41 -0400
commitb59195db80f72d19455b238418d5d017bc40beac (patch)
treedfa25d49d6eec5c14df95bcbf4c45ef4b49c92d3 /docs/ref
parentdc4160ecc0ef12b3e6b93d2c81b8f405854474fa (diff)
[1.10.x] Removed incorrect "required" attribute in docs/ref/forms/fields.txt.
Backport of 17ed0d36bc3c380b7d8a0a30ceda09d98ab74fd4 from master
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/forms/fields.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/forms/fields.txt b/docs/ref/forms/fields.txt
index 8aaee62a28..3280dbc249 100644
--- a/docs/ref/forms/fields.txt
+++ b/docs/ref/forms/fields.txt
@@ -125,7 +125,7 @@ We've specified ``auto_id=False`` to simplify the output::
>>> f = CommentForm(auto_id=False)
>>> print(f)
<tr><th>Your name:</th><td><input type="text" name="name" required /></td></tr>
- <tr><th>Your website:</th><td><input type="url" name="url" required /></td></tr>
+ <tr><th>Your website:</th><td><input type="url" name="url" /></td></tr>
<tr><th>Comment:</th><td><input type="text" name="comment" required /></td></tr>
``label_suffix``