diff options
author | Frederick Cheung <frederick.cheung@gmail.com> | 2009-01-26 20:35:21 +0000 |
---|---|---|
committer | Frederick Cheung <frederick.cheung@gmail.com> | 2009-01-26 20:43:42 +0000 |
commit | 9a5c2d3d5cbe9c8380f921e7f44ae0646d8163a4 (patch) | |
tree | 7d599689c0113e209dffa94052519bd99c4894cb /railties/doc | |
parent | 41fbf746c2feb4ddde64bd465207c9d8dfda6ec9 (diff) | |
download | rails-9a5c2d3d5cbe9c8380f921e7f44ae0646d8163a4.tar.gz rails-9a5c2d3d5cbe9c8380f921e7f44ae0646d8163a4.tar.bz2 rails-9a5c2d3d5cbe9c8380f921e7f44ae0646d8163a4.zip |
remove stray backslashes
Diffstat (limited to 'railties/doc')
-rw-r--r-- | railties/doc/guides/source/form_helpers.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/doc/guides/source/form_helpers.txt b/railties/doc/guides/source/form_helpers.txt index cddcc5f0c2..7ad170aaa2 100644 --- a/railties/doc/guides/source/form_helpers.txt +++ b/railties/doc/guides/source/form_helpers.txt @@ -496,7 +496,7 @@ Using Date and Time Form Helpers The date and time helpers differ from all the other form helpers in two important respects: 1. Dates and times are not representable by a single input element. Instead you have several, one for each component (year, month, day etc.) and so there is no single value in your `params` hash with your date or time. -2. Other helpers use the _tag suffix to indicate whether a helper is a barebones helper or one that operates on model objects. With dates and times, `select\_date`, `select\_time` and `select_datetime` are the barebones helpers, `date_select`, `time_select` and `datetime_select` are the equivalent model object helpers. +2. Other helpers use the _tag suffix to indicate whether a helper is a barebones helper or one that operates on model objects. With dates and times, `select_date`, `select_time` and `select_datetime` are the barebones helpers, `date_select`, `time_select` and `datetime_select` are the equivalent model object helpers. Both of these families of helpers will create a series of select boxes for the different components (year, month, day etc.). |