From bc1dd0b82eb994a9948c038e01db7ced5a48ffea Mon Sep 17 00:00:00 2001 From: Pratik Naik Date: Fri, 20 Mar 2009 18:12:21 +0000 Subject: Improve the deprecation message for Errors#on --- activemodel/lib/active_model/deprecated_error_methods.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/activemodel/lib/active_model/deprecated_error_methods.rb b/activemodel/lib/active_model/deprecated_error_methods.rb index 39c79bb0c6..2f2e804ade 100644 --- a/activemodel/lib/active_model/deprecated_error_methods.rb +++ b/activemodel/lib/active_model/deprecated_error_methods.rb @@ -2,8 +2,8 @@ module ActiveModel module DeprecatedErrorMethods def on(attribute) message = "Errors#on have been deprecated, use Errors#[] instead.\n" - message << "Also note that the behaviour of Errors#[] has changed. Errors#[] now always returns an Array and an empty Array when " - message << "there are not errors on the specified attribute." + message << "Also note that the behaviour of Errors#[] has changed. Errors#[] now always returns an Array. An empty Array is " + message << "returned when there are no errors on the specified attribute." ActiveSupport::Deprecation.warn(message) errors = self[attribute] -- cgit v1.2.3