Update docs for 1.4.1 release
diff --git a/docs/dyn/fusiontables_v2.task.html b/docs/dyn/fusiontables_v2.task.html
index 2884501..55e2a3e 100644
--- a/docs/dyn/fusiontables_v2.task.html
+++ b/docs/dyn/fusiontables_v2.task.html
@@ -76,10 +76,10 @@
 <h2>Instance Methods</h2>
 <p class="toc_element">
   <code><a href="#delete">delete(tableId, taskId)</a></code></p>
-<p class="firstline">Deletes the task, unless already started.</p>
+<p class="firstline">Deletes a specific task by its ID, unless that task has already started running.</p>
 <p class="toc_element">
   <code><a href="#get">get(tableId, taskId)</a></code></p>
-<p class="firstline">Retrieves a specific task by its id.</p>
+<p class="firstline">Retrieves a specific task by its ID.</p>
 <p class="toc_element">
   <code><a href="#list">list(tableId, pageToken=None, maxResults=None, startIndex=None)</a></code></p>
 <p class="firstline">Retrieves a list of tasks.</p>
@@ -89,30 +89,30 @@
 <h3>Method Details</h3>
 <div class="method">
     <code class="details" id="delete">delete(tableId, taskId)</code>
-  <pre>Deletes the task, unless already started.
+  <pre>Deletes a specific task by its ID, unless that task has already started running.
 
 Args:
   tableId: string, Table from which the task is being deleted. (required)
-  taskId: string, A parameter (required)
+  taskId: string, The identifier of the task to delete. (required)
 </pre>
 </div>
 
 <div class="method">
     <code class="details" id="get">get(tableId, taskId)</code>
-  <pre>Retrieves a specific task by its id.
+  <pre>Retrieves a specific task by its ID.
 
 Args:
   tableId: string, Table to which the task belongs. (required)
-  taskId: string, A parameter (required)
+  taskId: string, The identifier of the task to get. (required)
 
 Returns:
   An object of the form:
 
-    { # A background task on a table, initiated for time and or resource consuming operations such as a column type change or delete all rows operation.
-    "started": True or False, # True if the task is in progress, its progress indicator will indicated where it is, and it can't be deleted.
+    { # A background task on a table, initiated for time- or resource-consuming operations such as changing column types or deleting all rows.
+    "started": True or False, # false while the table is busy with some other task. true if this background task is currently running.
     "progress": "A String", # Task percentage completion.
-    "kind": "fusiontables#task", # Type name: a template for an individual task.
-    "type": "A String", # The type of task being executed in the background.
+    "kind": "fusiontables#task", # Type of the resource. This is always "fusiontables#task".
+    "type": "A String", # Type of background task.
     "taskId": "A String", # Identifier for the task.
   }</pre>
 </div>
@@ -130,18 +130,18 @@
 Returns:
   An object of the form:
 
-    { # Represents a list of tasks in a table.
-    "nextPageToken": "A String", # Token used to access the next page of this result. No token is displayed if there are no more tokens left.
+    { # Represents a list of tasks for a table.
+    "nextPageToken": "A String", # Token used to access the next page of this result. No token is displayed if there are no more pages left.
     "items": [ # List of all requested tasks.
-      { # A background task on a table, initiated for time and or resource consuming operations such as a column type change or delete all rows operation.
-        "started": True or False, # True if the task is in progress, its progress indicator will indicated where it is, and it can't be deleted.
+      { # A background task on a table, initiated for time- or resource-consuming operations such as changing column types or deleting all rows.
+        "started": True or False, # false while the table is busy with some other task. true if this background task is currently running.
         "progress": "A String", # Task percentage completion.
-        "kind": "fusiontables#task", # Type name: a template for an individual task.
-        "type": "A String", # The type of task being executed in the background.
+        "kind": "fusiontables#task", # Type of the resource. This is always "fusiontables#task".
+        "type": "A String", # Type of background task.
         "taskId": "A String", # Identifier for the task.
       },
     ],
-    "kind": "fusiontables#taskList", # Type name: a list of all tasks.
+    "kind": "fusiontables#taskList", # Type of the resource. This is always "fusiontables#taskList".
     "totalItems": 42, # Total number of tasks for the table.
   }</pre>
 </div>