aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/core_ext/module
diff options
context:
space:
mode:
authorBenjamin Fleischer <github@benjaminfleischer.com>2017-02-05 19:00:18 -0600
committerBenjamin Fleischer <github@benjaminfleischer.com>2017-02-05 19:00:18 -0600
commitc8b5d828e7abbbbcf1f0854896453e8b29ab5d42 (patch)
treea182ea45e2deb6e23da9b5ed3d88bd1cb197abec /activesupport/test/core_ext/module
parentb9ae7481fd5653fc6430148f06e0fca27317829e (diff)
downloadrails-c8b5d828e7abbbbcf1f0854896453e8b29ab5d42.tar.gz
rails-c8b5d828e7abbbbcf1f0854896453e8b29ab5d42.tar.bz2
rails-c8b5d828e7abbbbcf1f0854896453e8b29ab5d42.zip
Correct spelling
``` go get -u github.com/client9/misspell/cmd/misspell misspell -w -error -source=text . ```
Diffstat (limited to 'activesupport/test/core_ext/module')
-rw-r--r--activesupport/test/core_ext/module/attribute_aliasing_test.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activesupport/test/core_ext/module/attribute_aliasing_test.rb b/activesupport/test/core_ext/module/attribute_aliasing_test.rb
index d8c2dfd6b8..fdfa868851 100644
--- a/activesupport/test/core_ext/module/attribute_aliasing_test.rb
+++ b/activesupport/test/core_ext/module/attribute_aliasing_test.rb
@@ -52,8 +52,8 @@ class AttributeAliasingTest < ActiveSupport::TestCase
assert_equal "No, really, this is not a joke.", e.Data
assert e.Data?
- e.Data = "Uppercased methods are teh suck"
- assert_equal "Uppercased methods are teh suck", e.body
+ e.Data = "Uppercased methods are the suck"
+ assert_equal "Uppercased methods are the suck", e.body
assert e.body?
end
end