aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/lib/active_model
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2010-10-06 23:16:13 +0200
committerXavier Noria <fxn@hashref.com>2010-10-06 23:16:13 +0200
commitdb520042b3fbb94fd12f9f8c0458f6b2cd5187a9 (patch)
treecb52db780575ee5c27eeed90721258d1fac55ada /activemodel/lib/active_model
parent2a04110f266b6ccaf94aeeae224af578a9620fbd (diff)
parent3ca6988b782f7ae9da736b090fbf1edd8bc02fcb (diff)
downloadrails-db520042b3fbb94fd12f9f8c0458f6b2cd5187a9.tar.gz
rails-db520042b3fbb94fd12f9f8c0458f6b2cd5187a9.tar.bz2
rails-db520042b3fbb94fd12f9f8c0458f6b2cd5187a9.zip
Merge branch 'master' of git://github.com/lifo/docrails
Diffstat (limited to 'activemodel/lib/active_model')
-rw-r--r--activemodel/lib/active_model/validations.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activemodel/lib/active_model/validations.rb b/activemodel/lib/active_model/validations.rb
index 1b5fb55b79..b044caa8d3 100644
--- a/activemodel/lib/active_model/validations.rb
+++ b/activemodel/lib/active_model/validations.rb
@@ -114,7 +114,7 @@ module ActiveModel
# end
#
# def must_be_friends
- # errors.add(:base, ("Must be friends to leave a comment") unless commenter.friend_of?(commentee)
+ # errors.add(:base, "Must be friends to leave a comment") unless commenter.friend_of?(commentee)
# end
# end
#