1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Fix Typo existant -> existent [ci skip]

This commit is contained in:
Prathamesh Sonpatki 2013-05-07 22:34:11 +05:30
parent d156b4724f
commit b5429eec60
3 changed files with 4 additions and 4 deletions

View file

@ -4,7 +4,7 @@
* Fixed a bug in `ActiveRecord#sanitize_sql_hash_for_conditions` in which * Fixed a bug in `ActiveRecord#sanitize_sql_hash_for_conditions` in which
`self.class` is an argument to `PredicateBuilder#build_from_hash` `self.class` is an argument to `PredicateBuilder#build_from_hash`
causing `PredicateBuilder` to call non-existant method causing `PredicateBuilder` to call non-existent method
`Class#reflect_on_association`. `Class#reflect_on_association`.
*Zach Ohlgren* *Zach Ohlgren*

View file

@ -99,7 +99,7 @@ module Notifications
@notifier.publish :foo @notifier.publish :foo
@notifier.publish :foo @notifier.publish :foo
@notifier.subscribe("not_existant") do |*args| @notifier.subscribe("not_existent") do |*args|
@events << ActiveSupport::Notifications::Event.new(*args) @events << ActiveSupport::Notifications::Event.new(*args)
end end

View file

@ -77,9 +77,9 @@ module SharedGeneratorTests
end end
def test_template_raises_an_error_with_invalid_path def test_template_raises_an_error_with_invalid_path
content = capture(:stderr){ run_generator([destination_root, "-m", "non/existant/path"]) } content = capture(:stderr){ run_generator([destination_root, "-m", "non/existent/path"]) }
assert_match(/The template \[.*\] could not be loaded/, content) assert_match(/The template \[.*\] could not be loaded/, content)
assert_match(/non\/existant\/path/, content) assert_match(/non\/existent\/path/, content)
end end
def test_template_is_executed_when_supplied def test_template_is_executed_when_supplied