Small indent

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@613 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
David Heinemeier Hansson 2005-02-15 00:03:18 +00:00
parent 65f834ad45
commit a3298e5efd

@ -902,7 +902,7 @@ def destroy
# Returns a clone of the record that hasn't been assigned an id yet and is treated as a new record.
def clone
attrs = self.attributes
attrs.delete(self.class.primary_key)
attrs.delete(self.class.primary_key)
cloned_record = self.class.new(attrs)
cloned_record
end