diff options
author | José Valim <jose.valim@plataformatec.com.br> | 2013-05-07 21:32:52 -0700 |
---|---|---|
committer | José Valim <jose.valim@plataformatec.com.br> | 2013-05-07 21:32:52 -0700 |
commit | 8b9f5fc864ce87fa13753ba69dd2543eb8b60999 (patch) | |
tree | b8cddafe4b25a510ef767c9703506b03989da0d2 /activesupport | |
parent | d156b4724f79d51bb924ccb5055f3602bb7fcc65 (diff) | |
parent | b5429eec6084cfe9f1283620391f81e3f6fefda4 (diff) | |
download | rails-8b9f5fc864ce87fa13753ba69dd2543eb8b60999.tar.gz rails-8b9f5fc864ce87fa13753ba69dd2543eb8b60999.tar.bz2 rails-8b9f5fc864ce87fa13753ba69dd2543eb8b60999.zip |
Merge pull request #10511 from prathamesh-sonpatki/existent
Fix Typo existant -> existent [ci skip]
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/test/notifications_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/test/notifications_test.rb b/activesupport/test/notifications_test.rb index d63c59883a..33627a4e74 100644 --- a/activesupport/test/notifications_test.rb +++ b/activesupport/test/notifications_test.rb @@ -99,7 +99,7 @@ module Notifications @notifier.publish :foo @notifier.publish :foo - @notifier.subscribe("not_existant") do |*args| + @notifier.subscribe("not_existent") do |*args| @events << ActiveSupport::Notifications::Event.new(*args) end |