From 70ca6dad2f7fec42ea6e3f80435016ad3366b616 Mon Sep 17 00:00:00 2001
From: Philipp Rieber
Date: Sat, 11 Jan 2014 06:55:36 +0100
Subject: [PATCH] Improvements after review
---
reference/forms/types/options/action.rst.inc | 2 +-
reference/forms/types/options/method.rst.inc | 8 ++++----
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/reference/forms/types/options/action.rst.inc b/reference/forms/types/options/action.rst.inc
index bd1bfa10e6f..70977722000 100644
--- a/reference/forms/types/options/action.rst.inc
+++ b/reference/forms/types/options/action.rst.inc
@@ -7,6 +7,6 @@ action
**type**: ``string`` **default**: empty string
This option specifies where to send the form's data on submission (usually an
-URI). It's value is rendered as the ``action`` attribute of the ``form``
+URI). Its value is rendered as the ``action`` attribute of the ``form``
element. An empty value is considered a same-document reference, i.e. the form
will be submitted to the same URI that rendered the form.
diff --git a/reference/forms/types/options/method.rst.inc b/reference/forms/types/options/method.rst.inc
index b6df4c74374..00da8e316c6 100644
--- a/reference/forms/types/options/method.rst.inc
+++ b/reference/forms/types/options/method.rst.inc
@@ -6,10 +6,10 @@ method
**type**: ``string`` **default**: ``POST``
-This option specifies the HTTP method used to submit the form's data. It's
-value is rendered as the ``method`` attribute of the ``form`` element and to
-perform some consistency checks when evaluating the form after submission.
-Possible values are:
+This option specifies the HTTP method used to submit the form's data. Its
+value is rendered as the ``method`` attribute of the ``form`` element and is
+used to decide whether to process the form submission in the
+``handleRequest()`` method after submission. Possible values are:
* POST
* GET