diff --git a/core/lib/Drupal/Core/Config/Entity/Query/Query.php b/core/lib/Drupal/Core/Config/Entity/Query/Query.php index daafcd4..5782503 100644 --- a/core/lib/Drupal/Core/Config/Entity/Query/Query.php +++ b/core/lib/Drupal/Core/Config/Entity/Query/Query.php @@ -128,8 +128,8 @@ protected function loadRecords() { $prefix = $entity_info['config_prefix'] . '.'; $prefix_length = strlen($prefix); - // If there are conditions on the config id, we can narrow the list of - // config records to load and parse. + // If there are conditions on the config ID, we can narrow the list of + // records to load and parse. $ids = array(); if ($this->condition->getConjunction() == 'AND') { foreach ($this->condition->conditions() as $condition) { @@ -155,7 +155,7 @@ protected function loadRecords() { }, $ids); } else { - // If no conditions on IDs were found, we need to look at all the records. + // If no conditions on IDs were found, we need to parse all records. $names = $this->configStorage->listAll($prefix); }