summaryrefslogtreecommitdiff
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:00:47 -0400
commit17ed0d36bc3c380b7d8a0a30ceda09d98ab74fd4 (patch)
treeeb6fd0efad6f0c64867efd9862d0549401f542be
parenteedc88bd4a8468c2a0daa8346c9b57183dd77782 (diff)
Removed incorrect "required" attribute in docs/ref/forms/fields.txt.
-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 10a47ef740..e6c8fbc4c3 100644
--- a/docs/ref/forms/fields.txt
+++ b/docs/ref/forms/fields.txt
@@ -124,7 +124,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``