summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
Diffstat (limited to 'includes')
-rw-r--r--includes/database/database.inc10
1 files changed, 5 insertions, 5 deletions
diff --git a/includes/database/database.inc b/includes/database/database.inc
index c85e35a10..94517f002 100644
--- a/includes/database/database.inc
+++ b/includes/database/database.inc
@@ -669,7 +669,7 @@ abstract class DatabaseConnection extends PDO {
}
/**
- * Prepares and returns a SELECT query object with the specified ID.
+ * Prepares and returns a SELECT query object.
*
* @param $table
* The base table for this query, that is, the first table in the FROM
@@ -693,7 +693,7 @@ abstract class DatabaseConnection extends PDO {
}
/**
- * Prepares and returns an INSERT query object with the specified ID.
+ * Prepares and returns an INSERT query object.
*
* @param $options
* An array of options on the query.
@@ -709,7 +709,7 @@ abstract class DatabaseConnection extends PDO {
}
/**
- * Prepares and returns a MERGE query object with the specified ID.
+ * Prepares and returns a MERGE query object.
*
* @param $options
* An array of options on the query.
@@ -726,7 +726,7 @@ abstract class DatabaseConnection extends PDO {
/**
- * Prepares and returns an UPDATE query object with the specified ID.
+ * Prepares and returns an UPDATE query object.
*
* @param $options
* An array of options on the query.
@@ -742,7 +742,7 @@ abstract class DatabaseConnection extends PDO {
}
/**
- * Prepares and returns a DELETE query object with the specified ID.
+ * Prepares and returns a DELETE query object.
*
* @param $options
* An array of options on the query.