diff --git a/core/lib/Drupal/Core/ParamConverter/EntityConverter.php b/core/lib/Drupal/Core/ParamConverter/EntityConverter.php index 5478de8..be6b3f2 100644 --- a/core/lib/Drupal/Core/ParamConverter/EntityConverter.php +++ b/core/lib/Drupal/Core/ParamConverter/EntityConverter.php @@ -65,7 +65,7 @@ public function convert($value, $definition, $name, array $defaults) { // If the entity type is revisionable, load the latest revision. if ($entity instanceof EntityInterface && !empty($definition['load_latest_revision']) && $entity->getEntityType()->isRevisionable()) { - // @todo, replace this with query with a standardised way of getting the + // @todo, replace this query with a standardised way of getting the // latest revision in https://www.drupal.org/node/2784201. $entity_revisions = $storage ->getQuery()