<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -28,8 +28,7 @@ knowing the type of model your interacting with.  For example, a typical
 polymorphic assocation looks like the following:
 
   class Tag &lt; ActiveRecord::Base
-    belongs_to :taggable,
-                 :polymorphic =&gt; true
+    belongs_to :taggable, :polymorphic =&gt; true
   end
 
 When getting the taggable record, you would normally have to call
@@ -45,10 +44,8 @@ class name.
 === Example
 
   class Comment &lt; ActiveRecord::Base
-    belongs_to :commentable,
-                 :polymorphic =&gt; true
-    belongs_to :commenter,
-                 :polymorphic =&gt; true
+    belongs_to :commentable, :polymorphic =&gt; true
+    belongs_to :commenter, :polymorphic =&gt; true
   end
   
   class Article &lt; ActiveRecord::Base
@@ -56,8 +53,7 @@ class name.
   end
   
   class User &lt; ActiveRecord::Base
-    has_many :comments,
-               :as =&gt; :commenter
+    has_many :comments, :as =&gt; :commenter
   end
   
   c = Comment.find(1)   # =&gt; #&lt;Tag id: 1, commentable_id: 1, commentable_type: &quot;Article&quot;, commenter_id: 1, commenter_type: &quot;User&quot;}&gt;</diff>
      <filename>README.rdoc</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,4 @@
 class Article &lt; ActiveRecord::Base
   belongs_to  :author
-  has_many    :comments,
-                :as =&gt; :commentable
+  has_many    :comments, :as =&gt; :commentable
 end</diff>
      <filename>test/app_root/app/models/article.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,6 +1,5 @@
 class Author &lt; ActiveRecord::Base
   has_many  :articles
   has_many  :pages
-  has_many  :comments,
-              :as =&gt; :commenter
+  has_many  :comments, :as =&gt; :commenter
 end</diff>
      <filename>test/app_root/app/models/author.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,6 +1,4 @@
 class Comment &lt; ActiveRecord::Base
-  belongs_to  :commentable,
-                :polymorphic =&gt; true
-  belongs_to  :commenter,
-                :polymorphic =&gt; true
-end
\ No newline at end of file
+  belongs_to  :commentable, :polymorphic =&gt; true
+  belongs_to  :commenter, :polymorphic =&gt; true
+end</diff>
      <filename>test/app_root/app/models/comment.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,4 @@
 class Page &lt; ActiveRecord::Base
   belongs_to  :author
-  has_many    :comments,
-                :as =&gt; :commentable
+  has_many    :comments, :as =&gt; :commentable
 end</diff>
      <filename>test/app_root/app/models/page.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,3 @@
 class User &lt; ActiveRecord::Base
-  has_many  :comments,
-              :as =&gt; :commenter
-end
\ No newline at end of file
+  has_many  :comments, :as =&gt; :commenter
+end</diff>
      <filename>test/app_root/app/models/user.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>36409490cdc0b6ff55d8f5dfba45fc9c3b151c85</id>
    </parent>
  </parents>
  <author>
    <name>Aaron Pfeifer</name>
    <email>aaron.pfeifer@gmail.com</email>
  </author>
  <url>http://github.com/pluginaweek/polymorphic_identity/commit/aa3e4e70b5979428a10791339f87c46217c63af1</url>
  <id>aa3e4e70b5979428a10791339f87c46217c63af1</id>
  <committed-date>2009-04-13T18:52:11-07:00</committed-date>
  <authored-date>2009-04-13T18:52:11-07:00</authored-date>
  <message>Minor doc / formatting tweaks</message>
  <tree>698b838553070ad8ab1ff4adff4299516824855d</tree>
  <committer>
    <name>Aaron Pfeifer</name>
    <email>aaron.pfeifer@gmail.com</email>
  </committer>
</commit>
