aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@plataformatec.com.br>2013-05-07 21:32:52 -0700
committerJosé Valim <jose.valim@plataformatec.com.br>2013-05-07 21:32:52 -0700
commit8b9f5fc864ce87fa13753ba69dd2543eb8b60999 (patch)
treeb8cddafe4b25a510ef767c9703506b03989da0d2 /activesupport
parentd156b4724f79d51bb924ccb5055f3602bb7fcc65 (diff)
parentb5429eec6084cfe9f1283620391f81e3f6fefda4 (diff)
downloadrails-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.rb2
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