diff --git a/core/lib/Drupal/Core/Entity/Query/Sql/Tables.php b/core/lib/Drupal/Core/Entity/Query/Sql/Tables.php index 0efda75c6a..4c82c85506 100644 --- a/core/lib/Drupal/Core/Entity/Query/Sql/Tables.php +++ b/core/lib/Drupal/Core/Entity/Query/Sql/Tables.php @@ -275,10 +275,10 @@ public function addField($field, $type, $langcode) { // Add the new entity base table using the table and sql column. // An addition $field_storage parameter is passed to make this // function more usable. To maintain the backwards compatibility, the - // additional parameter is not a part of function signature and it + // additional parameter is not added to the function signature and it // will be added to the function signature in 8.5.x. - // @todo add the $field_storage parameter to addNextBaseTable - // signature https://www.drupal.org/node/2909425. + // @todo Add the $field_storage parameter to addNextBaseTable + // signature in 8.5.x. https://www.drupal.org/node/2909425 $base_table = $this->addNextBaseTable($entity_type, $table, $sql_column, $field_storage); $propertyDefinitions = []; $key++;