Refresh docs
diff --git a/docs/epy/apiclient.http.BatchHttpRequest-class.html b/docs/epy/apiclient.http.BatchHttpRequest-class.html
index 9f13c74..9da1234 100644
--- a/docs/epy/apiclient.http.BatchHttpRequest-class.html
+++ b/docs/epy/apiclient.http.BatchHttpRequest-class.html
@@ -65,6 +65,25 @@
 <pre class="literalblock">
 Batches multiple HttpRequest objects into a single HTTP request.
 
+Example:
+  from apiclient.http import BatchHttpRequest
+
+  def list_animals(request_id, response):
+    &quot;&quot;&quot;Do something with the animals list response.&quot;&quot;&quot;
+    pass
+
+  def list_farmers(request_id, response):
+    &quot;&quot;&quot;Do something with the farmers list response.&quot;&quot;&quot;
+    pass
+
+  service = build('farm', 'v2')
+
+  batch = BatchHttpRequest()
+
+  batch.add(service.animals().list(), list_animals)
+  batch.add(service.farmers().list(), list_farmers)
+  batch.execute(http)
+
 </pre>
 
 <!-- ==================== INSTANCE METHODS ==================== -->
@@ -584,7 +603,7 @@
   None
 
 Raises:
-  BatchError if a resumable request is added to a batch.
+  BatchError if a media request is added to a batch.
   KeyError is the request_id is not unique.
 
 </pre>
@@ -686,7 +705,7 @@
 <table border="0" cellpadding="0" cellspacing="0" width="100%%">
   <tr>
     <td align="left" class="footer">
-    Generated by Epydoc 3.0.1 on Fri Jun 15 09:51:50 2012
+    Generated by Epydoc 3.0.1 on Fri Jun 15 13:13:23 2012
     </td>
     <td align="right" class="footer">
       <a target="mainFrame" href="http://epydoc.sourceforge.net"