aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-11-07 09:36:43 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-11-07 09:36:43 +0000
commit01cfd2b00afc25fa4ca8e538f59a405e7eec7bb5 (patch)
treed424a25811351d3f0a659cbf05cf7e4facf38007 /actionpack/CHANGELOG
parent8dda7c5449f0c8f8f8569d6ca6c1aa3d906518a1 (diff)
downloadrails-01cfd2b00afc25fa4ca8e538f59a405e7eec7bb5.tar.gz
rails-01cfd2b00afc25fa4ca8e538f59a405e7eec7bb5.tar.bz2
rails-01cfd2b00afc25fa4ca8e538f59a405e7eec7bb5.zip
Fix docs (closes #2725)
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2906 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/CHANGELOG')
-rw-r--r--actionpack/CHANGELOG6
1 files changed, 3 insertions, 3 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG
index f884c8d404..e28dd6dc91 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -571,7 +571,7 @@
* Added ActionController::Base.asset_host that will then be used by all the asset helpers. This enables you to easily offload static content like javascripts and images to a separate server tuned just for that.
-* Fixed action/fragment caching using the filestore when a directory and a file wanted to to use the same name. Now there's a .cache prefix that sidesteps the conflict #1188 [imbcmdth@hotmail.com]
+* Fixed action/fragment caching using the filestore when a directory and a file wanted to use the same name. Now there's a .cache prefix that sidesteps the conflict #1188 [imbcmdth@hotmail.com]
* Fixed missing id uniqueness in FormTag#radio_button #1207 [Jarkko]
@@ -1179,7 +1179,7 @@
* Added POST support for the breakpoint retries, so form processing that raises an exception can be retried with the original request [Florian Gross]
-* Fixed regression with Base#reset_session that wouldn't use the the DEFAULT_SESSION_OPTIONS [adam@the-kramers.net]
+* Fixed regression with Base#reset_session that wouldn't use the DEFAULT_SESSION_OPTIONS [adam@the-kramers.net]
* Fixed error rendering of rxml documents to not just swallow the exception and return 0 (still not guessing the right line, but hey)
@@ -1431,7 +1431,7 @@
* Added another case to DateHelper#distance_in_minutes to return "less than a minute" instead of "0 minutes" and "1 minute" instead of "1 minutes"
* Added a hidden field to checkboxes generated with FormHelper#check_box that will make sure that the unchecked value (usually 0)
- is sent even if the checkbox is not checked. This relieves the controller from doing custom checking if the the checkbox wasn't
+ is sent even if the checkbox is not checked. This relieves the controller from doing custom checking if the checkbox wasn't
checked. BEWARE: This might conflict with your run-on-the-mill work-around code. [Tobias Luetke]
* Fixed error_message_on to just use the first if more than one error had been added [marcel]