diff options
author | Achraf Almouloudi <achraf52@outlook.com> | 2019-03-12 13:00:40 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-12 13:00:40 +0100 |
commit | 62277ad462d1054a98ccae2073f383f81698b3f5 (patch) | |
tree | 720cc688a3bc0cffaa5f983fe1e5afa077097519 /user_guide_src/source/helpers | |
parent | 493ed6c472af3270cf995647a02c385c7f0500b3 (diff) |
Corrected example mistake
Corrected an example mistake where the input script tries to echo "<p>fieldset content here</p>\n" but the result in "Produces" is "<p>form content here</p>" which is clearly an inconsistant result.
Diffstat (limited to 'user_guide_src/source/helpers')
-rw-r--r-- | user_guide_src/source/helpers/form_helper.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/user_guide_src/source/helpers/form_helper.rst b/user_guide_src/source/helpers/form_helper.rst index 43a20e18c..50cda2ed4 100644 --- a/user_guide_src/source/helpers/form_helper.rst +++ b/user_guide_src/source/helpers/form_helper.rst @@ -380,7 +380,7 @@ The following functions are available: <fieldset> <legend>Address Information</legend> - <p>form content here</p> + <p>fieldset content here</p> </fieldset> */ @@ -401,7 +401,7 @@ The following functions are available: <fieldset id="address_info" class="address_info"> <legend>Address Information</legend> - <p>form content here</p> + <p>fieldset content here</p> </fieldset> */ |