From 7078ec3f9899e9841d4425cda6908d2b72c246a1 Mon Sep 17 00:00:00 2001 From: Yves Senn Date: Sat, 15 Jun 2013 14:34:55 +0200 Subject: [PATCH] cleanup, remove trailing whitespace from AR changelog --- activerecord/CHANGELOG.md | 8 ++++---- 1 file 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