aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorVishal Telangre <the@vishaltelangre.com>2019-05-11 20:18:04 +0530
committerVishal Telangre <the@vishaltelangre.com>2019-05-11 20:18:04 +0530
commite1bb6afa94eeb1d76c7a12aada60e790e7e49b28 (patch)
treeec57309fe0ffe877b2d3db1555a344ad595a3abb /guides
parente8350663ad7c4bd9f8f724d0e82b2a48f5acfee4 (diff)
downloadrails-e1bb6afa94eeb1d76c7a12aada60e790e7e49b28.tar.gz
rails-e1bb6afa94eeb1d76c7a12aada60e790e7e49b28.tar.bz2
rails-e1bb6afa94eeb1d76c7a12aada60e790e7e49b28.zip
[ci skip] Typo: ActiveSuppport -> ActiveSupport
Diffstat (limited to 'guides')
-rw-r--r--guides/source/6_0_release_notes.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/guides/source/6_0_release_notes.md b/guides/source/6_0_release_notes.md
index cb3ea7737c..5358aa3899 100644
--- a/guides/source/6_0_release_notes.md
+++ b/guides/source/6_0_release_notes.md
@@ -202,7 +202,7 @@ Please refer to the [Changelog][action-pack] for detailed changes.
* Remove deprecated methods in `ActionDispatch::TestResponse`:
`#success?` in favor of `#successful?`, `#missing?` in favor of `#not_found?`,
- `#error?` in favor of `#server_error?`
+ `#error?` in favor of `#server_error?`.
([Commit](https://github.com/rails/rails/commit/13ddc92e079e59a0b894e31bf5bb4fdecbd235d1))
### Deprecations
@@ -762,7 +762,7 @@ Please refer to the [Changelog][active-support] for detailed changes.
([Pull Request](https://github.com/rails/rails/pull/34123))
* Deprecate `ActiveSupport::Multibyte::Unicode#normalize`
- and `ActiveSuppport::Multibyte::Chars#normalize` in favor of
+ and `ActiveSupport::Multibyte::Chars#normalize` in favor of
`String#unicode_normalize`.
([Pull Request](https://github.com/rails/rails/pull/34202))
@@ -771,7 +771,7 @@ Please refer to the [Changelog][active-support] for detailed changes.
([Pull Request](https://github.com/rails/rails/pull/34215))
* Deprecate `ActiveSupport::Multibyte::Unicode#pack_graphemes(array)`
- and `ActiveSuppport::Multibyte::Unicode#unpack_graphemes(string)`
+ and `ActiveSupport::Multibyte::Unicode#unpack_graphemes(string)`
in favor of `array.flatten.pack("U*")` and `string.scan(/\X/).map(&:codepoints)`,
respectively.
([Pull Request](https://github.com/rails/rails/pull/34254))