diff options
author | Vipul A M <vipulnsward@gmail.com> | 2013-05-26 16:27:05 +0530 |
---|---|---|
committer | Vipul A M <vipulnsward@gmail.com> | 2013-05-26 16:27:05 +0530 |
commit | d745d62616bb2b309c0a805387dae2d4e1814d3f (patch) | |
tree | db2fad616c3e82265f33a181b1147a7a586f776c /activesupport/test/json | |
parent | 432ffdb0739426122e216e0f7199ebc16f15de7e (diff) | |
download | rails-d745d62616bb2b309c0a805387dae2d4e1814d3f.tar.gz rails-d745d62616bb2b309c0a805387dae2d4e1814d3f.tar.bz2 rails-d745d62616bb2b309c0a805387dae2d4e1814d3f.zip |
Fix some typo in method names, variables
Diffstat (limited to 'activesupport/test/json')
-rw-r--r-- | activesupport/test/json/encoding_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/test/json/encoding_test.rb b/activesupport/test/json/encoding_test.rb index 106a7fb522..14f4366f7b 100644 --- a/activesupport/test/json/encoding_test.rb +++ b/activesupport/test/json/encoding_test.rb @@ -195,7 +195,7 @@ class TestJSONEncoding < ActiveSupport::TestCase assert_nothing_raised do hash = { "CHI" => { - :dislay_name => "chicago", + :display_name => "chicago", :latitude => 123.234 } } |