aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2006-07-03 23:27:47 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2006-07-03 23:27:47 +0000
commit4bd827e5230182d4b942af265b1e256d09469e31 (patch)
treef15afd0605dd1d0da6b9480a23ad3d5c15225466 /activesupport
parentd954ee21b8d5718794d6e23c1d77e90b77bf0e34 (diff)
downloadrails-4bd827e5230182d4b942af265b1e256d09469e31.tar.gz
rails-4bd827e5230182d4b942af265b1e256d09469e31.tar.bz2
rails-4bd827e5230182d4b942af265b1e256d09469e31.zip
Typo in alias_method_chain rdoc.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4534 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/lib/active_support/core_ext/module/aliasing.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/core_ext/module/aliasing.rb b/activesupport/lib/active_support/core_ext/module/aliasing.rb
index 167bc75057..09209884b6 100644
--- a/activesupport/lib/active_support/core_ext/module/aliasing.rb
+++ b/activesupport/lib/active_support/core_ext/module/aliasing.rb
@@ -17,7 +17,7 @@ class Module
# is equivalent to
#
# alias_method :foo_without_feature?, :foo?
- # alias_method :foo?, :foo_without_feature?
+ # alias_method :foo?, :foo_with_feature?
#
# so you can safely chain foo, foo?, and foo! with the same feature.
def alias_method_chain(target, feature)