Skip to content

Commit 9eb72ac

Browse files
committed
Fix syntax error with no US-ASCII char
1 parent b8aa392 commit 9eb72ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

activerecord/lib/active_record/validations.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ module ActiveRecord
1010
# puts invalid.record.errors
1111
# end
1212
class RecordInvalid < ActiveRecordError
13-
attr_reader :record # :nodoc:
13+
attr_reader :record # :nodoc:
1414
def initialize(record) # :nodoc:
1515
@record = record
1616
errors = @record.errors.full_messages.join(", ")

0 commit comments

Comments
 (0)