summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2015-01-06 08:56:53 +0100
committerClaude Paroz <claude@2xlibre.net>2015-01-06 08:56:53 +0100
commite0080cf577166e160987c74e2d8324ddbbee3b6d (patch)
tree56b0901126b72c0dc147548755ab23b47827f2cb
parent011f21b4faddf40fdb84f2adbb75fc4c3fb94ce8 (diff)
Fixed #24083 -- Corrected is_bound nature in forms topic docs
Thanks ajenhl Trac user for the report.
-rw-r--r--docs/topics/forms/index.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/topics/forms/index.txt b/docs/topics/forms/index.txt
index 85c03a48b8..abf911fd96 100644
--- a/docs/topics/forms/index.txt
+++ b/docs/topics/forms/index.txt
@@ -385,8 +385,8 @@ The distinction between :ref:`ref-forms-api-bound-unbound` is important:
is valid. If an invalid bound form is rendered, it can include inline error
messages telling the user what data to correct.
-The form's ``is_bound()`` method will tell you whether a form has data bound to
-it or not.
+The form's :attr:`~Form.is_bound` attribute will tell you whether a form has
+data bound to it or not.
More on fields
--------------