aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUbuntu <cloud@edtatul.edtatul.i10.internal.cloudapp.net>2015-11-07 10:37:56 +0000
committerUbuntu <cloud@edtatul.edtatul.i10.internal.cloudapp.net>2015-11-07 10:37:56 +0000
commitd2a7b9898b89b5e96b840b7b79ac97502d99aff5 (patch)
tree2a5aea27b64a1c5c772caf6ab6a1e2138dd8ba47
parent92bc8cdb0771bf6ffcfb31ef58dba529527b514c (diff)
downloadrails-d2a7b9898b89b5e96b840b7b79ac97502d99aff5.tar.gz
rails-d2a7b9898b89b5e96b840b7b79ac97502d99aff5.tar.bz2
rails-d2a7b9898b89b5e96b840b7b79ac97502d99aff5.zip
Add comma to to make the information clear
-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
-------------------------