diff options
author | Prathamesh Sonpatki <csonpatki@gmail.com> | 2013-05-07 22:34:11 +0530 |
---|---|---|
committer | Prathamesh Sonpatki <csonpatki@gmail.com> | 2013-05-08 09:50:46 +0530 |
commit | b5429eec6084cfe9f1283620391f81e3f6fefda4 (patch) | |
tree | b8cddafe4b25a510ef767c9703506b03989da0d2 /activesupport/test | |
parent | d156b4724f79d51bb924ccb5055f3602bb7fcc65 (diff) | |
download | rails-b5429eec6084cfe9f1283620391f81e3f6fefda4.tar.gz rails-b5429eec6084cfe9f1283620391f81e3f6fefda4.tar.bz2 rails-b5429eec6084cfe9f1283620391f81e3f6fefda4.zip |
Fix Typo existant -> existent [ci skip]
Diffstat (limited to 'activesupport/test')
-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 |