diff --git a/core/includes/bootstrap.inc b/core/includes/bootstrap.inc index 464f045..422ca21 100644 --- a/core/includes/bootstrap.inc +++ b/core/includes/bootstrap.inc @@ -2481,7 +2481,7 @@ function drupal_container(Container $new_container = NULL, $rebuild = FALSE) { // Register the EntityManager. $container->register('plugin.manager.entity', 'Drupal\Core\Entity\EntityManager'); - // Register import snapshot configuration storage. + // Register snapshot configuration storage. $container ->register('config.storage.snapshot', 'Drupal\Core\Config\DatabaseStorage') ->addArgument(new Reference('database')) diff --git a/core/modules/config/lib/Drupal/config/Tests/ConfigSnapshotTest.php b/core/modules/config/lib/Drupal/config/Tests/ConfigSnapshotTest.php index 1db07ca..a386599 100644 --- a/core/modules/config/lib/Drupal/config/Tests/ConfigSnapshotTest.php +++ b/core/modules/config/lib/Drupal/config/Tests/ConfigSnapshotTest.php @@ -59,8 +59,8 @@ function testSnapshot() { // Write modified data to staging. $staging->write($name, $staging_data); - // Verify that active and snapshot match, and that staging doesn't match - // either. + // Verify that active and the snapshot match, and that staging doesn't + // match active or the snapshot. $this->assertFalse(config_sync_get_changes($snapshot, $storage)); $this->assertTrue(config_sync_get_changes($snapshot, $staging)); $this->assertTrue(config_sync_get_changes($staging, $storage));