diff options
author | Robin Dupret <robin.dupret@gmail.com> | 2018-08-09 20:04:24 +0200 |
---|---|---|
committer | Ryuta Kamizono <kamipo@gmail.com> | 2018-08-10 06:24:25 +0900 |
commit | 482b74e793301bda3e6c8282a064485a6db01c55 (patch) | |
tree | ffd0ebbf8138b763e36ccba4ec3c7df5fe965f4f | |
parent | 74ce503fa9899d746d775c4d0cd29f702e34b1bf (diff) | |
download | rails-482b74e793301bda3e6c8282a064485a6db01c55.tar.gz rails-482b74e793301bda3e6c8282a064485a6db01c55.tar.bz2 rails-482b74e793301bda3e6c8282a064485a6db01c55.zip |
Fix a typo in Active Support's CHANGELOG [ci skip]
-rw-r--r-- | activesupport/CHANGELOG.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md index 5423d59984..25e2ee04f9 100644 --- a/activesupport/CHANGELOG.md +++ b/activesupport/CHANGELOG.md @@ -96,7 +96,7 @@ *Godfrey Chan* -* Fix bug where `URI.unscape` would fail with mixed Unicode/escaped character input: +* Fix bug where `URI.unescape` would fail with mixed Unicode/escaped character input: URI.unescape("\xe3\x83\x90") # => "バ" URI.unescape("%E3%83%90") # => "バ" |