Index: includes/database/database.inc
===================================================================
RCS file: /cvs/drupal/drupal/includes/database/database.inc,v
retrieving revision 1.83
diff -u -r1.83 database.inc
--- includes/database/database.inc	2 Dec 2009 23:05:13 -0000	1.83
+++ includes/database/database.inc	3 Dec 2009 17:22:40 -0000
@@ -2442,22 +2442,22 @@
 }
 
 /**
- * Add a primary key.
+ * Adds a primary key to a database table.
  *
  * @param $table
- *   The table to be altered.
+ *   Name of the table to be altered.
  * @param $fields
- *   Fields for the primary key.
+ *   Array of fields for the primary key.
  */
 function db_add_primary_key($table, $fields) {
   return Database::getConnection()->schema()->addPrimaryKey($table, $fields);
 }
 
 /**
- * Drop the primary key.
+ * Drops the primary key of a database table.
  *
  * @param $table
- *   The table to be altered.
+ *   Name of the table to be altered.
  */
 function db_drop_primary_key($table) {
   return Database::getConnection()->schema()->dropPrimaryKey($table);
