aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteve Klabnik <steve@steveklabnik.com>2012-11-29 05:28:52 -0800
committerSteve Klabnik <steve@steveklabnik.com>2012-11-29 05:28:52 -0800
commite6b8452e58a4f7d92bce13bef6060ec9fa6f7d60 (patch)
treed01486d8746e3e763bf386abdae52ec7bb1a540b
parent87b5d53e2f99d87efd8ff1d5e33db6a91dd7771c (diff)
downloadrails-e6b8452e58a4f7d92bce13bef6060ec9fa6f7d60.tar.gz
rails-e6b8452e58a4f7d92bce13bef6060ec9fa6f7d60.tar.bz2
rails-e6b8452e58a4f7d92bce13bef6060ec9fa6f7d60.zip
Fix title of 'form helpers' guide.
They're Rails Guides, so obviously we're talking about Rails Form Helpers. Also, 'helpers' should be capitalized.
-rw-r--r--guides/source/form_helpers.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/form_helpers.md b/guides/source/form_helpers.md
index b1917c2a36..2ca387db4b 100644
--- a/guides/source/form_helpers.md
+++ b/guides/source/form_helpers.md
@@ -1,5 +1,5 @@
-Rails Form helpers
-==================
+Form Helpers
+============
Forms in web applications are an essential interface for user input. However, form markup can quickly become tedious to write and maintain because of form control naming and their numerous attributes. Rails deals away with these complexities by providing view helpers for generating form markup. However, since they have different use-cases, developers are required to know all the differences between similar helper methods before putting them to use.