<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -13,7 +13,7 @@
 		&lt;p&gt;API wrapper for Twitter and Twitter Search API's&lt;/p&gt; 
 		
 		&lt;ul id=&quot;nav&quot;&gt;
-			&lt;li&gt;&lt;a href=&quot;rdoc/&quot;&gt;Docs&lt;/a&gt;&lt;/li&gt; 
+			&lt;li&gt;&lt;a href=&quot;http://rdoc.info/projects/jnunemaker/twitter&quot;&gt;Docs&lt;/a&gt;&lt;/li&gt; 
 			&lt;li&gt;&lt;a href=&quot;http://github.com/jnunemaker/twitter&quot;&gt;Github&lt;/a&gt;&lt;/li&gt;
 			&lt;li&gt;&lt;a href=&quot;http://rubyforge.org/projects/twitter/&quot;&gt;Rubyforge&lt;/a&gt;&lt;/li&gt; 
 		&lt;/ul&gt; 
@@ -54,17 +54,38 @@ base.friends_timeline.each { |tweet| puts tweet.text }
 		&lt;h2&gt;Search API Examples&lt;/h2&gt;
 		
 &lt;pre&gt;&lt;code&gt;#searches all tweets for httparty
-Twitter::Search.new('httparty').each { |r| puts r.inspect }
+Twitter::Search.new('httparty').each do |r| 
+  puts r.inspect
+end
 
 # searches all of jnunemaker's tweets for httparty
-Twitter::Search.new('httparty').from('jnunemaker').each { |r| puts r.inspect }
+Twitter::Search.new('httparty').from('jnunemaker').each do |r| 
+  puts r.inspect
+end
 
 # searches all tweets from jnunemaker to oaknd1
-Twitter::Search.new.from('jnunemaker').to('oaknd1').each { |r| puts r.inspect }
+Twitter::Search.new.from('jnunemaker').to('oaknd1').each do |r| 
+  puts r.inspect
+end
 
 # you can also use fetch to actually just get the parsed response
 Twitter::Search.new.from('jnunemaker').to('oaknd1').fetch()
 &lt;/code&gt;&lt;/pre&gt;
+
+
+    &lt;h2&gt;Trends API Examples&lt;/h2&gt;
+    
+&lt;pre&gt;&lt;code&gt;Twitter::Trends.current
+Twitter::Trends.current(:exclude =&gt; 'hashtags')
+
+Twitter::Trends.daily # current day
+Twitter::Trends.daily(:exclude =&gt; 'hashtags')
+Twitter::Trends.daily(:date =&gt; Date.new(2009, 5, 1))
+
+Twitter::Trends.weekly # current day
+Twitter::Trends.weekly(:exclude =&gt; 'hashtags')
+Twitter::Trends.weekly(:date =&gt; Date.new(2009, 5, 1))
+&lt;/code&gt;&lt;/pre&gt;
 		
     &lt;!-- &lt;h2&gt;Command Line&lt;/h2&gt;
     </diff>
      <filename>website/index.html</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>75780fdd9d3d59f50a87e06154cd31a65e0ec515</id>
    </parent>
  </parents>
  <author>
    <name>John Nunemaker</name>
    <email>nunemaker@gmail.com</email>
  </author>
  <url>http://github.com/jnunemaker/twitter/commit/19000eae773da4cdb76ef8b324d7c86ed45f3b0c</url>
  <id>19000eae773da4cdb76ef8b324d7c86ed45f3b0c</id>
  <committed-date>2009-05-18T14:27:25-07:00</committed-date>
  <authored-date>2009-05-18T14:27:25-07:00</authored-date>
  <message>Updated website with trends examples.</message>
  <tree>d2f2a446279a09a4212523353bd5da859a9f5a8a</tree>
  <committer>
    <name>John Nunemaker</name>
    <email>nunemaker@gmail.com</email>
  </committer>
</commit>
