diff --git a/core/includes/database.inc b/core/includes/database.inc index 8da1dd825b18b92f58c5079e672d5cd945844752..e1f4f3080b4f3788c6bb91df928879500c4f0438 100644 --- a/core/includes/database.inc +++ b/core/includes/database.inc @@ -731,7 +731,7 @@ function db_drop_table($table) { * will be set to the value of the key in all rows. This is most useful for * creating NOT NULL columns with no default value in existing tables. * @param $keys_new - * Optional keys and indexes specification to be created on the table along + * (optional) Keys and indexes specification to be created on the table along * with adding the field. The format is the same as a table specification, but * without the 'fields' element. If you are adding a type 'serial' field, you * MUST specify at least one key or index including it in this array. See @@ -911,7 +911,7 @@ function db_drop_index($table, $name) { * @param $spec * The field specification for the new field. * @param $keys_new - * Optional keys and indexes specification to be created on the table along + * (optional) Keys and indexes specification to be created on the table along * with changing the field. The format is the same as a table specification * but without the 'fields' element. */ diff --git a/core/lib/Drupal/Core/Database/Schema.php b/core/lib/Drupal/Core/Database/Schema.php index bf7107abb4a84e0d877bb2ddb02ed09c2b76fe45..2cee9857951c8f84d085cf7a852f149e60a92994 100644 --- a/core/lib/Drupal/Core/Database/Schema.php +++ b/core/lib/Drupal/Core/Database/Schema.php @@ -437,7 +437,7 @@ abstract public function copyTable($source, $destination); * This is most useful for creating NOT NULL columns with no default * value in existing tables. * @param $keys_new - * Optional keys and indexes specification to be created on the + * (optional) Keys and indexes specification to be created on the * table along with adding the field. The format is the same as a * table specification but without the 'fields' element. If you are * adding a type 'serial' field, you MUST specify at least one key @@ -651,7 +651,7 @@ abstract public function dropIndex($table, $name); * @param $spec * The field specification for the new field. * @param $keys_new - * Optional keys and indexes specification to be created on the + * (optional) Keys and indexes specification to be created on the * table along with changing the field. The format is the same as a * table specification but without the 'fields' element. *