aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2013-06-15 14:34:55 +0200
committerYves Senn <yves.senn@gmail.com>2013-06-15 14:34:55 +0200
commit7078ec3f9899e9841d4425cda6908d2b72c246a1 (patch)
tree2d803256e4a8b049be87cd021d6215eb3e67058c /activerecord
parentc3adb313aaf29b9e5d08014a8bba6ea593ec7e7f (diff)
downloadrails-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.md8
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