Skip to content

Commit

Permalink
nodoc raw_write_attribute
Browse files Browse the repository at this point in the history
Is this supposed to be public API? If so, I can document it instead.
:memo:
  • Loading branch information
mcfiredrill committed Sep 19, 2015
1 parent 94e8b3a commit e1de8bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion activerecord/lib/active_record/attribute_methods/write.rb
Expand Up @@ -45,7 +45,7 @@ def write_attribute(attr_name, value)
write_attribute_with_type_cast(attr_name, value, true)
end

def raw_write_attribute(attr_name, value)
def raw_write_attribute(attr_name, value) # :nodoc:
write_attribute_with_type_cast(attr_name, value, false)
end

Expand Down

0 comments on commit e1de8bc

Please sign in to comment.