aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source
diff options
context:
space:
mode:
authorKasper Timm Hansen <kaspth@gmail.com>2015-11-07 11:43:26 +0100
committerKasper Timm Hansen <kaspth@gmail.com>2015-11-07 11:43:26 +0100
commitaf3ac5022ec252e45c14f460875edadfb7a64d38 (patch)
tree83ba7bda64dfb2b490b666d3e15e8b8000bebbcf /guides/source
parent6158355f2eb51f6768c60077a177af370e95a14b (diff)
parentd2a7b9898b89b5e96b840b7b79ac97502d99aff5 (diff)
downloadrails-af3ac5022ec252e45c14f460875edadfb7a64d38.tar.gz
rails-af3ac5022ec252e45c14f460875edadfb7a64d38.tar.bz2
rails-af3ac5022ec252e45c14f460875edadfb7a64d38.zip
Merge pull request #22211 from atul-shimpi/master
Add comma to to make the information clear
Diffstat (limited to 'guides/source')
-rw-r--r--guides/source/form_helpers.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/form_helpers.md b/guides/source/form_helpers.md
index 0a6e2e5dba..93bb51557a 100644
--- a/guides/source/form_helpers.md
+++ b/guides/source/form_helpers.md
@@ -657,7 +657,7 @@ NOTE: If the user has not selected a file the corresponding parameter will be an
### Dealing with Ajax
-Unlike other forms making an asynchronous file upload form is not as simple as providing `form_for` with `remote: true`. With an Ajax form the serialization is done by JavaScript running inside the browser and since JavaScript cannot read files from your hard drive the file cannot be uploaded. The most common workaround is to use an invisible iframe that serves as the target for the form submission.
+Unlike other forms, making an asynchronous file upload form is not as simple as providing `form_for` with `remote: true`. With an Ajax form the serialization is done by JavaScript running inside the browser and since JavaScript cannot read files from your hard drive the file cannot be uploaded. The most common workaround is to use an invisible iframe that serves as the target for the form submission.
Customizing Form Builders
-------------------------