From e6b8452e58a4f7d92bce13bef6060ec9fa6f7d60 Mon Sep 17 00:00:00 2001 From: Steve Klabnik Date: Thu, 29 Nov 2012 05:28:52 -0800 Subject: [PATCH] Fix title of 'form helpers' guide. They're Rails Guides, so obviously we're talking about Rails Form Helpers. Also, 'helpers' should be capitalized. --- guides/source/form_helpers.md | 4 ++-- 1 file 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.