From e0080cf577166e160987c74e2d8324ddbbee3b6d Mon Sep 17 00:00:00 2001 From: Claude Paroz Date: Tue, 6 Jan 2015 08:56:53 +0100 Subject: [PATCH] Fixed #24083 -- Corrected is_bound nature in forms topic docs Thanks ajenhl Trac user for the report. --- docs/topics/forms/index.txt | 4 ++-- 1 file 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 --------------