diff options
author | Nicholas Seckar <nseckar@gmail.com> | 2006-04-03 05:21:26 +0000 |
---|---|---|
committer | Nicholas Seckar <nseckar@gmail.com> | 2006-04-03 05:21:26 +0000 |
commit | d0e8d5430ac0001aec925934613944ef9ecab850 (patch) | |
tree | b220c2865a4a14c24dbfc04230d69774111e58bb | |
parent | bf109cacf15d8f84b28f8f092084647ba5216d95 (diff) | |
download | rails-d0e8d5430ac0001aec925934613944ef9ecab850.tar.gz rails-d0e8d5430ac0001aec925934613944ef9ecab850.tar.bz2 rails-d0e8d5430ac0001aec925934613944ef9ecab850.zip |
Typo fix
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4139 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
-rw-r--r-- | activesupport/lib/active_support/core_ext/symbol.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/core_ext/symbol.rb b/activesupport/lib/active_support/core_ext/symbol.rb index 434d6abdbb..3a412f647b 100644 --- a/activesupport/lib/active_support/core_ext/symbol.rb +++ b/activesupport/lib/active_support/core_ext/symbol.rb @@ -1,5 +1,5 @@ class Symbol - # Turns the symbol into a simpel proc, which is especially useful for enumerations. Examples: + # Turns the symbol into a simple proc, which is especially useful for enumerations. Examples: # # # The same as people.collect { |p| p.name } # people.collect(&:name) |