diff --git a/core/lib/Drupal/Core/DrupalKernel.php b/core/lib/Drupal/Core/DrupalKernel.php index 7018c18..2b788dc 100644 --- a/core/lib/Drupal/Core/DrupalKernel.php +++ b/core/lib/Drupal/Core/DrupalKernel.php @@ -179,8 +179,8 @@ class DrupalKernel implements DrupalKernelInterface, TerminableInterface { * (optional) FALSE to stop the container from being written to or read * from disk. Defaults to TRUE. * @param bool $allow_loading - * (optional) FALSE to prevent that the kernel is attempted to be read from - * disk. Defaults to $allow_dumping. + * (optional) FALSE to prevent the kernel attempting to read the dependency + * injection container from disk. Defaults to $allow_dumping. */ public function __construct($environment, ClassLoader $class_loader, $allow_dumping = TRUE, $allow_loading = NULL) { $this->environment = $environment; @@ -357,7 +357,7 @@ public function updateModules(array $module_list, array $module_filenames = arra } // This method is called whenever the list of modules changed. Therefore - // disable loading of a dumped kernel from the disk, because it is + // disable loading of a dumped container from the disk, because it is // guaranteed to be out of date and needs to be rebuilt anyway. $this->allowLoading = FALSE;