diff options
author | Yves Senn <yves.senn@gmail.com> | 2013-06-15 14:34:55 +0200 |
---|---|---|
committer | Yves Senn <yves.senn@gmail.com> | 2013-06-15 14:34:55 +0200 |
commit | 7078ec3f9899e9841d4425cda6908d2b72c246a1 (patch) | |
tree | 2d803256e4a8b049be87cd021d6215eb3e67058c /activerecord | |
parent | c3adb313aaf29b9e5d08014a8bba6ea593ec7e7f (diff) | |
download | rails-7078ec3f9899e9841d4425cda6908d2b72c246a1.tar.gz rails-7078ec3f9899e9841d4425cda6908d2b72c246a1.tar.bz2 rails-7078ec3f9899e9841d4425cda6908d2b72c246a1.zip |
cleanup, remove trailing whitespace from AR changelog
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/CHANGELOG.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md index ab1eb49286..8b075310d3 100644 --- a/activerecord/CHANGELOG.md +++ b/activerecord/CHANGELOG.md @@ -5,12 +5,12 @@ has_many :posts has_many :taggings, :through => :posts end - + class Post < ActiveRecord::Base has_one :tagging has_many :taggings end - + class Tagging < ActiveRecord::Base end @@ -20,12 +20,12 @@ has_many :posts has_many :taggings, :through => :posts, :source => :tagging end - + class Post < ActiveRecord::Base has_one :tagging has_many :taggings end - + class Tagging < ActiveRecord::Base end |