aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support
diff options
context:
space:
mode:
authorFrancesco Rodriguez <lrodriguezsanc@gmail.com>2012-04-28 23:04:36 -0500
committerFrancesco Rodriguez <lrodriguezsanc@gmail.com>2012-04-28 23:04:36 -0500
commit6659252d9f0e6d77bee268adf587e03cfeb8f9ad (patch)
tree0e6d35ff11accb9a0418ad6e520b82fcda96f3db /activesupport/lib/active_support
parentc6dbaac12b109b4a9b6ba551538fad1f4fb463f4 (diff)
downloadrails-6659252d9f0e6d77bee268adf587e03cfeb8f9ad.tar.gz
rails-6659252d9f0e6d77bee268adf587e03cfeb8f9ad.tar.bz2
rails-6659252d9f0e6d77bee268adf587e03cfeb8f9ad.zip
fix typo in ActiveSupport::Inflector#titleize
Diffstat (limited to 'activesupport/lib/active_support')
-rw-r--r--activesupport/lib/active_support/inflector/methods.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/inflector/methods.rb b/activesupport/lib/active_support/inflector/methods.rb
index 61876d89a9..4fcd32edf2 100644
--- a/activesupport/lib/active_support/inflector/methods.rb
+++ b/activesupport/lib/active_support/inflector/methods.rb
@@ -106,7 +106,7 @@ module ActiveSupport
# a nicer looking title. +titleize+ is meant for creating pretty output. It is not
# used in the Rails internals.
#
- # +titleize+ is also aliased as as +titlecase+.
+ # +titleize+ is also aliased as +titlecase+.
#
# Examples:
# "man from the boondocks".titleize # => "Man From The Boondocks"