aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/lib
diff options
context:
space:
mode:
authorManoj <manoj.mk27@gmail.com>2012-01-23 22:58:23 +0530
committerManoj <manoj.mk27@gmail.com>2012-01-24 22:10:06 +0530
commit204aabc24c9084b4c3ba618e173e9d6d5ef347e6 (patch)
tree6243d40e8440b6a8959a41acb57e227426166be3 /activemodel/lib
parent2580696c4903c19e5021ee4a8208224564a3bf39 (diff)
downloadrails-204aabc24c9084b4c3ba618e173e9d6d5ef347e6.tar.gz
rails-204aabc24c9084b4c3ba618e173e9d6d5ef347e6.tar.bz2
rails-204aabc24c9084b4c3ba618e173e9d6d5ef347e6.zip
quote fix ` to ' in the ArgumentError message
message quote fix
Diffstat (limited to 'activemodel/lib')
-rw-r--r--activemodel/lib/active_model/observing.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activemodel/lib/active_model/observing.rb b/activemodel/lib/active_model/observing.rb
index a8309bf682..32f2aa46bd 100644
--- a/activemodel/lib/active_model/observing.rb
+++ b/activemodel/lib/active_model/observing.rb
@@ -63,7 +63,7 @@ module ActiveModel
# raises an +ArgumentError+ exception.
def add_observer(observer)
unless observer.respond_to? :update
- raise ArgumentError, "observer needs to respond to `update'"
+ raise ArgumentError, "observer needs to respond to 'update'"
end
observer_instances << observer
end