1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

cleanup, remove trailing whitespace from AR changelog

This commit is contained in:
Yves Senn 2013-06-15 14:34:55 +02:00
parent c3adb313aa
commit 7078ec3f98

View file

@ -5,12 +5,12 @@
has_many :posts has_many :posts
has_many :taggings, :through => :posts has_many :taggings, :through => :posts
end end
class Post < ActiveRecord::Base class Post < ActiveRecord::Base
has_one :tagging has_one :tagging
has_many :taggings has_many :taggings
end end
class Tagging < ActiveRecord::Base class Tagging < ActiveRecord::Base
end end
@ -20,12 +20,12 @@
has_many :posts has_many :posts
has_many :taggings, :through => :posts, :source => :tagging has_many :taggings, :through => :posts, :source => :tagging
end end
class Post < ActiveRecord::Base class Post < ActiveRecord::Base
has_one :tagging has_one :tagging
has_many :taggings has_many :taggings
end end
class Tagging < ActiveRecord::Base class Tagging < ActiveRecord::Base
end end