aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrederick Cheung <frederick.cheung@gmail.com>2009-01-25 23:49:57 +0000
committerFrederick Cheung <frederick.cheung@gmail.com>2009-01-25 23:59:31 +0000
commit56be53f220f232bb8eb4b6843dff72aacb3b41a5 (patch)
tree91277591aa70cb42fe555b4f24109991db08c6d4
parent24ce639647edc588ac33bb736d9ae6c80eac0405 (diff)
downloadrails-56be53f220f232bb8eb4b6843dff72aacb3b41a5.tar.gz
rails-56be53f220f232bb8eb4b6843dff72aacb3b41a5.tar.bz2
rails-56be53f220f232bb8eb4b6843dff72aacb3b41a5.zip
etc... => etc.
-rw-r--r--railties/doc/guides/source/form_helpers.txt2
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 1025dc8baf..6e62855649 100644
--- a/railties/doc/guides/source/form_helpers.txt
+++ b/railties/doc/guides/source/form_helpers.txt
@@ -498,7 +498,7 @@ The date and time helpers differ from all the other form helpers in two importan
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.
-Both of these families of helpers will create a series of select boxes for the different components (year, month, day etc...).
+Both of these families of helpers will create a series of select boxes for the different components (year, month, day etc.).
Barebones helpers
~~~~~~~~~~~~~~~~~