Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ci skip] Typo: ActiveSuppport -> ActiveSupport #36244

Merged
merged 1 commit into from May 11, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions guides/source/6_0_release_notes.md
Expand Up @@ -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
Expand Down Expand Up @@ -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))

Expand All @@ -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))
Expand Down