aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorVipul A M <vipulnsward@gmail.com>2016-05-03 08:42:43 -0400
committerVipul A M <vipulnsward@gmail.com>2016-05-03 16:16:28 -0500
commite8e9b6f25eb5e2310b4a681b28a13e15f104d589 (patch)
tree8a87dfa4bc008a706dd33cdbc83fc34eb224a431 /guides
parent43cb7acc0150a975b55202647ac58065335d4286 (diff)
downloadrails-e8e9b6f25eb5e2310b4a681b28a13e15f104d589.tar.gz
rails-e8e9b6f25eb5e2310b4a681b28a13e15f104d589.tar.bz2
rails-e8e9b6f25eb5e2310b4a681b28a13e15f104d589.zip
s/words_connnector/words_connector/
[ci skip]
Diffstat (limited to 'guides')
-rw-r--r--guides/source/2_3_release_notes.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/2_3_release_notes.md b/guides/source/2_3_release_notes.md
index a9bde66e4b..a8657c0de4 100644
--- a/guides/source/2_3_release_notes.md
+++ b/guides/source/2_3_release_notes.md
@@ -614,7 +614,7 @@ A few pieces of older code are deprecated in this release:
* Some integration test helpers have been removed. `response.headers["Status"]` and `headers["Status"]` will no longer return anything. Rack does not allow "Status" in its return headers. However you can still use the `status` and `status_message` helpers. `response.headers["cookie"]` and `headers["cookie"]` will no longer return any CGI cookies. You can inspect `headers["Set-Cookie"]` to see the raw cookie header or use the `cookies` helper to get a hash of the cookies sent to the client.
* `formatted_polymorphic_url` is deprecated. Use `polymorphic_url` with `:format` instead.
* The `:http_only` option in `ActionController::Response#set_cookie` has been renamed to `:httponly`.
-* The `:connector` and `:skip_last_comma` options of `to_sentence` have been replaced by `:words_connnector`, `:two_words_connector`, and `:last_word_connector` options.
+* The `:connector` and `:skip_last_comma` options of `to_sentence` have been replaced by `:words_connector`, `:two_words_connector`, and `:last_word_connector` options.
* Posting a multipart form with an empty `file_field` control used to submit an empty string to the controller. Now it submits a nil, due to differences between Rack's multipart parser and the old Rails one.
Credits