diff --git a/core/includes/common.inc b/core/includes/common.inc
index 034108b28d8328e9550c43728762271df95a3da0..55603fc67833b5d147a8c022308bca0be477ab8e 100644
--- a/core/includes/common.inc
+++ b/core/includes/common.inc
@@ -84,17 +84,19 @@
 const CSS_LAYOUT = -100;
 
 /**
- * The default weight for CSS rules that style design components (and their associated states and themes.)
+ * The default weight for CSS rules that style design components.
+ *
+ * This applies to the associated states and themes of the component.
  */
 const CSS_COMPONENT = 0;
 
 /**
- * The default weight for CSS rules that style states and are not included with components.
+ * The default weight for rules that style states not included with components.
  */
 const CSS_STATE = 100;
 
 /**
- * The default weight for CSS rules that style themes and are not included with components.
+ * The default weight for rules that style themes not included with components.
  */
 const CSS_THEME = 200;
 
@@ -342,7 +344,10 @@ function show(&$element) {
 }
 
 /**
- * Rebuilds the container, flushes all persistent caches, resets all variables, and rebuilds all data structures.
+ * Re-initializes the entire system.
+ *
+ * To re-initialize the system, the container is rebuilt, all persistent caches
+ * are flushed, all variables are reset and all data structures are rebuilt.
  *
  * At times, it is necessary to re-initialize the entire system to account for
  * changed or new code. This function:
diff --git a/core/lib/Drupal/Component/Plugin/Factory/DefaultFactory.php b/core/lib/Drupal/Component/Plugin/Factory/DefaultFactory.php
index b783e402deb66b3b908a48d5ad27c0c8d52072d5..dafc7ef010daf906392b80160b769cc49a4ac12a 100644
--- a/core/lib/Drupal/Component/Plugin/Factory/DefaultFactory.php
+++ b/core/lib/Drupal/Component/Plugin/Factory/DefaultFactory.php
@@ -17,7 +17,7 @@
 class DefaultFactory implements FactoryInterface {
 
   /**
-   * The object that retrieves the definitions of the plugins that this factory instantiates.
+   * The object that gets the plugin definitions that this factory instantiates.
    *
    * The plugin definition includes the plugin class and possibly other
    * information necessary for proper instantiation.
diff --git a/core/lib/Drupal/Component/Plugin/Factory/ReflectionFactory.php b/core/lib/Drupal/Component/Plugin/Factory/ReflectionFactory.php
index 4ce80eeaa21d2a6b134eaf402f1e3300d581b69f..2b239751d8e8dd05ad6b79c2e408923dd6466f4c 100644
--- a/core/lib/Drupal/Component/Plugin/Factory/ReflectionFactory.php
+++ b/core/lib/Drupal/Component/Plugin/Factory/ReflectionFactory.php
@@ -32,7 +32,7 @@ public function createInstance($plugin_id, array $configuration = []) {
   }
 
   /**
-   * Inspects the plugin class and build a list of arguments for the constructor.
+   * Inspects the plugin class and builds a list of constructor arguments.
    *
    * This is provided as a helper method so factories extending this class can
    * replace this and insert their own reflection logic.
diff --git a/core/lib/Drupal/Core/Access/AccessManagerInterface.php b/core/lib/Drupal/Core/Access/AccessManagerInterface.php
index 7fc86ad08a13c4c25798521a404a946e12e4e8cf..bfc7d1f04f12bb48dd6239da3cb4226dc37bc13a 100644
--- a/core/lib/Drupal/Core/Access/AccessManagerInterface.php
+++ b/core/lib/Drupal/Core/Access/AccessManagerInterface.php
@@ -12,7 +12,7 @@
 interface AccessManagerInterface {
 
   /**
-   * Checks a named route with parameters against applicable access check services.
+   * Checks a named route with parameters against access check services.
    *
    * Determines whether the route is accessible or not.
    *
diff --git a/core/lib/Drupal/Core/Access/AccessResult.php b/core/lib/Drupal/Core/Access/AccessResult.php
index 479867c083f35e000f4aa207b8ae71d3782d6a28..386aba4f09ff44f668d4634ee18e7e0e62caace7 100644
--- a/core/lib/Drupal/Core/Access/AccessResult.php
+++ b/core/lib/Drupal/Core/Access/AccessResult.php
@@ -98,7 +98,7 @@ public static function forbiddenIf($condition, $reason = NULL) {
   }
 
   /**
-   * Creates an allowed access result if the permission is present, neutral otherwise.
+   * Creates an access result if the permission is present, neutral otherwise.
    *
    * Checks the permission and adds a 'user.permissions' cache context.
    *
@@ -121,7 +121,7 @@ public static function allowedIfHasPermission(AccountInterface $account, $permis
   }
 
   /**
-   * Creates an allowed access result if the permissions are present, neutral otherwise.
+   * Creates an access result if the permissions are present, neutral otherwise.
    *
    * Checks the permission and adds a 'user.permissions' cache contexts.
    *
diff --git a/core/lib/Drupal/Core/Access/AccessResultForbidden.php b/core/lib/Drupal/Core/Access/AccessResultForbidden.php
index c6bf66c7eaa787c8a0a632647d23d18368f069b8..47856e3704ea8f1010f745c7725bc7644c8b45a4 100644
--- a/core/lib/Drupal/Core/Access/AccessResultForbidden.php
+++ b/core/lib/Drupal/Core/Access/AccessResultForbidden.php
@@ -3,7 +3,7 @@
 namespace Drupal\Core\Access;
 
 /**
- * Value object indicating a forbidden access result, with cacheability metadata.
+ * Value object for a forbidden access result, with cacheability metadata.
  */
 class AccessResultForbidden extends AccessResult implements AccessResultReasonInterface {
 
diff --git a/core/lib/Drupal/Core/Ajax/OpenModalDialogCommand.php b/core/lib/Drupal/Core/Ajax/OpenModalDialogCommand.php
index eae20c65d9edda30f14e555b2dfd99c6252e0f86..700aae4068a87a30a700774d6017abfa223b65fd 100644
--- a/core/lib/Drupal/Core/Ajax/OpenModalDialogCommand.php
+++ b/core/lib/Drupal/Core/Ajax/OpenModalDialogCommand.php
@@ -3,7 +3,7 @@
 namespace Drupal\Core\Ajax;
 
 /**
- * Defines an AJAX command to open certain content in a dialog in a modal dialog.
+ * An AJAX command to open certain content in a dialog in a modal dialog.
  *
  * @ingroup ajax
  */
diff --git a/core/lib/Drupal/Core/Asset/LibraryDiscoveryParser.php b/core/lib/Drupal/Core/Asset/LibraryDiscoveryParser.php
index 197d935909deacfc655dfcb72aca91d11755eafc..4fbec3231196095b03f0b903fcd7c10c1ebf5483 100644
--- a/core/lib/Drupal/Core/Asset/LibraryDiscoveryParser.php
+++ b/core/lib/Drupal/Core/Asset/LibraryDiscoveryParser.php
@@ -634,8 +634,8 @@ protected function setOverrideValue(array &$library, array $sub_key, array $over
   protected function resolveThemeAssetPath($theme_path, $overriding_asset) {
     if ($overriding_asset[0] !== '/' && !$this->isValidUri($overriding_asset)) {
       // The destination is not an absolute path and it's not a URI (e.g.
-      // public://generated_js/example.js or https://example.com/js/my_js.js), so
-      // it's relative to the theme.
+      // public://generated_js/example.js or https://example.com/js/my_js.js),
+      // so it's relative to the theme.
       return '/' . $theme_path . '/' . $overriding_asset;
     }
     return $overriding_asset;
diff --git a/core/lib/Drupal/Core/Cache/Context/AccountPermissionsCacheContext.php b/core/lib/Drupal/Core/Cache/Context/AccountPermissionsCacheContext.php
index af2766469c50048a95ed90f6b96d1a91c13ec27e..49133e22c2beec9f012c3fce70e444295ef714b0 100644
--- a/core/lib/Drupal/Core/Cache/Context/AccountPermissionsCacheContext.php
+++ b/core/lib/Drupal/Core/Cache/Context/AccountPermissionsCacheContext.php
@@ -6,7 +6,7 @@
 use Drupal\Core\Session\PermissionsHashGeneratorInterface;
 
 /**
- * Defines the AccountPermissionsCacheContext service, for "per permission" caching.
+ * The account permission cache context for "per permission" caching.
  *
  * Cache context ID: 'user.permissions'.
  */
diff --git a/core/lib/Drupal/Core/Cache/Context/CalculatedCacheContextInterface.php b/core/lib/Drupal/Core/Cache/Context/CalculatedCacheContextInterface.php
index 74be67027cbdfceefdd8053f83a1bec71c66c0c2..77836d5f07fa5de13b4668f4615cc9c5b8c5c9cd 100644
--- a/core/lib/Drupal/Core/Cache/Context/CalculatedCacheContextInterface.php
+++ b/core/lib/Drupal/Core/Cache/Context/CalculatedCacheContextInterface.php
@@ -36,7 +36,7 @@ public static function getLabel();
   public function getContext($parameter = NULL);
 
   /**
-   * Gets the cacheability metadata for the context based on the parameter value.
+   * Gets cacheability metadata for the context based on the parameter value.
    *
    * There are three valid cases for the returned CacheableMetadata object:
    * - An empty object means this can be optimized away safely.
diff --git a/core/lib/Drupal/Core/Cache/MemoryCache/LruMemoryCache.php b/core/lib/Drupal/Core/Cache/MemoryCache/LruMemoryCache.php
index 5ac066cfbdc0b4392863068381c9eb9dac64553c..f64d1035d715b90260ecd4feb18f5a35f7c31371 100644
--- a/core/lib/Drupal/Core/Cache/MemoryCache/LruMemoryCache.php
+++ b/core/lib/Drupal/Core/Cache/MemoryCache/LruMemoryCache.php
@@ -79,8 +79,8 @@ public function set($cid, $data, $expire = Cache::PERMANENT, array $tags = []):
     }
     elseif (count($this->cache) > $this->allowedSlots - 1) {
       // Remove one item from the cache to ensure we remain within the allowed
-      // number of slots. Avoid using array_slice() because it makes a copy of the
-      // array, and avoid using array_splice() or array_shift() because they
+      // number of slots. Avoid using array_slice() because it makes a copy of
+      // the array, and avoid using array_splice() or array_shift() because they
       // re-index numeric keys.
       unset($this->cache[array_key_first($this->cache)]);
     }
diff --git a/core/lib/Drupal/Core/Config/ConfigManagerInterface.php b/core/lib/Drupal/Core/Config/ConfigManagerInterface.php
index 2dc69635dd13032bb97eea8b5ea8ede13690a23f..769c63ed5ee291a3867af0c8fe975a05964ebbb8 100644
--- a/core/lib/Drupal/Core/Config/ConfigManagerInterface.php
+++ b/core/lib/Drupal/Core/Config/ConfigManagerInterface.php
@@ -134,7 +134,7 @@ public function findConfigEntityDependencies($type, array $names);
   public function findConfigEntityDependenciesAsEntities($type, array $names);
 
   /**
-   * Lists which config entities to update and delete on removal of a dependency.
+   * Lists config entities to update and delete on removal of a dependency.
    *
    * @param string $type
    *   The type of dependency being checked. Either 'module', 'theme', 'config'
diff --git a/core/lib/Drupal/Core/Config/Entity/ConfigEntityBase.php b/core/lib/Drupal/Core/Config/Entity/ConfigEntityBase.php
index d03c5dbb6703d1f46415e55a541694066b7bc25e..c7edfa9395875c33bd6c941f36389df2e036c649 100644
--- a/core/lib/Drupal/Core/Config/Entity/ConfigEntityBase.php
+++ b/core/lib/Drupal/Core/Config/Entity/ConfigEntityBase.php
@@ -233,7 +233,7 @@ public function createDuplicate() {
   }
 
   /**
-   * Helper callback for uasort() to sort configuration entities by weight and label.
+   * Callback for uasort() to sort configuration entities by weight and label.
    */
   public static function sort(ConfigEntityInterface $a, ConfigEntityInterface $b) {
     $a_weight = $a->weight ?? 0;
diff --git a/core/lib/Drupal/Core/Config/FileStorage.php b/core/lib/Drupal/Core/Config/FileStorage.php
index 79153c6d9ba7debc04cbb30ebfe69b28ad67747c..dc2c374bb966fdd3825ea17de747d55e059fad8d 100644
--- a/core/lib/Drupal/Core/Config/FileStorage.php
+++ b/core/lib/Drupal/Core/Config/FileStorage.php
@@ -63,7 +63,7 @@ public function getFilePath($name) {
   }
 
   /**
-   * Returns the file extension used by the file storage for all configuration files.
+   * Gets the extension used by the file storage for all configuration files.
    *
    * @return string
    *   The file extension.
diff --git a/core/lib/Drupal/Core/Database/Log.php b/core/lib/Drupal/Core/Database/Log.php
index 62f1e1b8802509c4023331bcad32e0b243e08554..2949754c54f222a98a45a44ea63ac16856e16bc8 100644
--- a/core/lib/Drupal/Core/Database/Log.php
+++ b/core/lib/Drupal/Core/Database/Log.php
@@ -18,7 +18,9 @@
 class Log {
 
   /**
-   * Cache of logged queries. This will only be used if the query logger is enabled.
+   * Cache of logged queries.
+   *
+   * This will only be used if the query logger is enabled.
    *
    * @var array
    * The structure for the logging array is as follows:
diff --git a/core/lib/Drupal/Core/Database/Query/SelectInterface.php b/core/lib/Drupal/Core/Database/Query/SelectInterface.php
index 97bd2da4a12d53b8abafa42b6727e6d28af74b47..1b0873555e9ad131d97f9c764045f236dba88d8c 100644
--- a/core/lib/Drupal/Core/Database/Query/SelectInterface.php
+++ b/core/lib/Drupal/Core/Database/Query/SelectInterface.php
@@ -152,7 +152,7 @@ public function escapeLike($string);
   public function escapeField($string);
 
   /**
-   * Compiles and returns an associative array of the arguments for this prepared statement.
+   * Compiles and returns an array of the arguments for this prepared statement.
    *
    * @param \Drupal\Core\Database\Query\PlaceholderInterface|null $queryPlaceholder
    *   When collecting the arguments of a subquery, the main placeholder
diff --git a/core/lib/Drupal/Core/Database/Schema.php b/core/lib/Drupal/Core/Database/Schema.php
index 190f8816fa31c3ab8b9f1ae938cd9a99f905a5a1..97e73b1bf8cbd1fd8aa6640c9c9a56c751919bdb 100644
--- a/core/lib/Drupal/Core/Database/Schema.php
+++ b/core/lib/Drupal/Core/Database/Schema.php
@@ -143,7 +143,7 @@ protected function executeDdlStatement(string $sql, array $arguments = [], array
   }
 
   /**
-   * Build a condition to match a table name against a standard information_schema.
+   * Builds a condition to match a table name against the information_schema.
    *
    * The information_schema is a SQL standard that provides information about
    * the database server and the databases, schemas, tables, columns and users
@@ -676,7 +676,7 @@ protected function createTableSql($name, $table) {
   }
 
   /**
-   * Return an array of field names from an array of key/index column specifiers.
+   * Gets an array of field names from an array of key/index column specifiers.
    *
    * This is usually an identity function but if a key/index uses a column
    * prefix specification, this function extracts just the name.
diff --git a/core/lib/Drupal/Core/Database/StatementInterface.php b/core/lib/Drupal/Core/Database/StatementInterface.php
index 1f229373c4e4e37f6981b654b2faadbc23db8177..b0755368307619597b12da206175747d31a87773 100644
--- a/core/lib/Drupal/Core/Database/StatementInterface.php
+++ b/core/lib/Drupal/Core/Database/StatementInterface.php
@@ -151,7 +151,8 @@ public function fetchAssoc();
    * @param int|null $column_index
    *   If $mode is FetchAs::Column, the index of the column to fetch.
    * @param array $constructor_arguments
-   *   If $mode is FetchAs::ClassObject, the arguments to pass to the constructor.
+   *   If $mode is FetchAs::ClassObject, the arguments to pass to the
+   *   constructor.
    *
    * @return array
    *   An array of results.
diff --git a/core/lib/Drupal/Core/Database/TransactionOutOfOrderException.php b/core/lib/Drupal/Core/Database/TransactionOutOfOrderException.php
index d7b07df3ea73d587a9504d07ea15294141a964b9..b6061e50aa06ede28c8f6a8e66453cf458d5eb9a 100644
--- a/core/lib/Drupal/Core/Database/TransactionOutOfOrderException.php
+++ b/core/lib/Drupal/Core/Database/TransactionOutOfOrderException.php
@@ -3,6 +3,9 @@
 namespace Drupal\Core\Database;
 
 /**
- * Exception thrown when a rollBack() resulted in other active transactions being rolled-back.
+ * Exception thrown transactions are out of order.
+ *
+ * This is thrown when a rollBack() resulted in other active transactions being
+ * rolled-back.
  */
 class TransactionOutOfOrderException extends TransactionException implements DatabaseException {}
diff --git a/core/lib/Drupal/Core/DependencyInjection/Compiler/BackwardsCompatibilityClassLoaderPass.php b/core/lib/Drupal/Core/DependencyInjection/Compiler/BackwardsCompatibilityClassLoaderPass.php
index d698b45cde009af8b51949ec8249c72475051054..c56fc46d3b7beec7c33a78cea3f65b6d4f861fc4 100644
--- a/core/lib/Drupal/Core/DependencyInjection/Compiler/BackwardsCompatibilityClassLoaderPass.php
+++ b/core/lib/Drupal/Core/DependencyInjection/Compiler/BackwardsCompatibilityClassLoaderPass.php
@@ -8,7 +8,7 @@
 use Symfony\Component\DependencyInjection\ContainerBuilder;
 
 /**
- * Defines a compiler pass to merge moved classes into a single container parameter.
+ * Compiler pass to merge moved classes into a single container parameter.
  */
 class BackwardsCompatibilityClassLoaderPass implements CompilerPassInterface {
 
diff --git a/core/lib/Drupal/Core/DrupalKernel.php b/core/lib/Drupal/Core/DrupalKernel.php
index 2681739146375cc3a998a33b3a71ad2ed4b210f7..221164875ef3c4fe815b2970fdf294c61f1f0868 100644
--- a/core/lib/Drupal/Core/DrupalKernel.php
+++ b/core/lib/Drupal/Core/DrupalKernel.php
@@ -1468,7 +1468,7 @@ protected function getHttpKernel() {
   }
 
   /**
-   * Returns the active configuration storage to use during building the container.
+   * Gets the active configuration storage to use during building the container.
    *
    * @return \Drupal\Core\Config\StorageInterface
    *   The configuration storage.
diff --git a/core/lib/Drupal/Core/Entity/EntityLastInstalledSchemaRepositoryInterface.php b/core/lib/Drupal/Core/Entity/EntityLastInstalledSchemaRepositoryInterface.php
index af910bb69004350caaffb54dc432f4d6d1bc8520..a4fcf968460e215f574dcc6691db04bd96bdaba1 100644
--- a/core/lib/Drupal/Core/Entity/EntityLastInstalledSchemaRepositoryInterface.php
+++ b/core/lib/Drupal/Core/Entity/EntityLastInstalledSchemaRepositoryInterface.php
@@ -125,7 +125,7 @@ public function deleteLastInstalledDefinition($entity_type_id);
   public function getLastInstalledFieldStorageDefinitions($entity_type_id);
 
   /**
-   * Stores the entity type's field storage definitions in the application state.
+   * Puts the entity type's field storage definitions in the application state.
    *
    * @param string $entity_type_id
    *   The entity type identifier.
diff --git a/core/lib/Drupal/Core/Entity/EntityReferenceSelection/SelectionInterface.php b/core/lib/Drupal/Core/Entity/EntityReferenceSelection/SelectionInterface.php
index d2f9bf3063c38faf35e3ac52a4d68139921ac6dc..1504154bc52dee30773f6ad1622b9ae051703d03 100644
--- a/core/lib/Drupal/Core/Entity/EntityReferenceSelection/SelectionInterface.php
+++ b/core/lib/Drupal/Core/Entity/EntityReferenceSelection/SelectionInterface.php
@@ -63,7 +63,7 @@ public function countReferenceableEntities($match = NULL, $match_operator = 'CON
   public function validateReferenceableEntities(array $ids);
 
   /**
-   * Allows the selection to alter the SelectQuery generated by EntityFieldQuery.
+   * Allows altering the SelectQuery generated by EntityFieldQuery.
    *
    * @param \Drupal\Core\Database\Query\SelectInterface $query
    *   A Select Query object.
diff --git a/core/lib/Drupal/Core/Entity/EntityTypeInterface.php b/core/lib/Drupal/Core/Entity/EntityTypeInterface.php
index 4522902f76bbc8cda1bc1bf6535081f7443a95e7..fb11b64c2dd88d96afbf7ab25fcdb1e46b254dc0 100644
--- a/core/lib/Drupal/Core/Entity/EntityTypeInterface.php
+++ b/core/lib/Drupal/Core/Entity/EntityTypeInterface.php
@@ -736,8 +736,8 @@ public function getListCacheTags();
   /**
    * The list cache tags associated with a specific bundle.
    *
-   * Enables code listing entities of this type and bundle to ensure that newly created
-   * entities show up immediately.
+   * Enables code listing entities of this type and bundle to ensure that newly
+   * created entities show up immediately.
    *
    * @return string[]
    *   An array of the cache tags for this bundle.
diff --git a/core/lib/Drupal/Core/Entity/EntityTypeListenerInterface.php b/core/lib/Drupal/Core/Entity/EntityTypeListenerInterface.php
index c5775eab29f1938865a2f7f6dc870025be593261..ffeffed5e2ce0bc5f6677c0c0ac8f327b389fb26 100644
--- a/core/lib/Drupal/Core/Entity/EntityTypeListenerInterface.php
+++ b/core/lib/Drupal/Core/Entity/EntityTypeListenerInterface.php
@@ -3,7 +3,7 @@
 namespace Drupal\Core\Entity;
 
 /**
- * Defines an interface for reacting to entity type creation, deletion, and updates.
+ * Interface for entity type create, delete and update operations.
  */
 interface EntityTypeListenerInterface {
 
diff --git a/core/lib/Drupal/Core/Entity/Query/ConditionAggregateBase.php b/core/lib/Drupal/Core/Entity/Query/ConditionAggregateBase.php
index 27ec70ce98bebd9a896acb8fae9fec1c586ba00c..db9bbcad6d5dfbb81bbd378501a4bce39c8395d5 100644
--- a/core/lib/Drupal/Core/Entity/Query/ConditionAggregateBase.php
+++ b/core/lib/Drupal/Core/Entity/Query/ConditionAggregateBase.php
@@ -3,7 +3,7 @@
 namespace Drupal\Core\Entity\Query;
 
 /**
- * Defines a common base class for all aggregation entity condition implementations.
+ * A common base class for all aggregation entity condition implementations.
  */
 abstract class ConditionAggregateBase extends ConditionFundamentals implements ConditionAggregateInterface {
 
diff --git a/core/lib/Drupal/Core/Extension/ExtensionNameLengthException.php b/core/lib/Drupal/Core/Extension/ExtensionNameLengthException.php
index ceb2d1cac6652764610c9bb5c8a5330a633bac29..9611b888e41cd5f3348e4b4e059b547cbfb5bd5b 100644
--- a/core/lib/Drupal/Core/Extension/ExtensionNameLengthException.php
+++ b/core/lib/Drupal/Core/Extension/ExtensionNameLengthException.php
@@ -3,6 +3,6 @@
 namespace Drupal\Core\Extension;
 
 /**
- * Exception thrown when the extension's name length exceeds the allowed maximum.
+ * Exception thrown when the extension's name length exceeds the maximum.
  */
 class ExtensionNameLengthException extends \Exception {}
diff --git a/core/lib/Drupal/Core/Extension/InstallRequirementsInterface.php b/core/lib/Drupal/Core/Extension/InstallRequirementsInterface.php
index ca1ad6afd6736db007e2b0617e5b3692d2619ef9..f2e8d7137c82caf7322e191d9ecc031f6bc7a38c 100644
--- a/core/lib/Drupal/Core/Extension/InstallRequirementsInterface.php
+++ b/core/lib/Drupal/Core/Extension/InstallRequirementsInterface.php
@@ -16,11 +16,12 @@ interface InstallRequirementsInterface {
    * During the 'install' phase, modules can for example assert that
    * library or server versions are available or sufficient.
    * Note that the installation of a module can happen during installation of
-   * Drupal itself (by install.php) with an installation profile or later by hand.
-   * As a consequence, install-time requirements must be checked without access
-   * to the full Drupal API, because it is not available during install.php.
-   * If a requirement has a severity of REQUIREMENT_ERROR, install.php will abort
-   * or at least the module will not install.
+   * Drupal itself (by install.php) with an installation profile or later by
+   * hand. As a consequence, install-time requirements must be checked without
+   * access to the full Drupal API, because it is not available during
+   * install.php.
+   * If a requirement has a severity of REQUIREMENT_ERROR, install.php will
+   * abort or at least the module will not install.
    * Other severity levels have no effect on the installation.
    * Module dependencies do not belong to these installation requirements,
    * but should be defined in the module's .info.yml file.
diff --git a/core/lib/Drupal/Core/Extension/ModuleHandler.php b/core/lib/Drupal/Core/Extension/ModuleHandler.php
index 99e73d6bca09057f48628749623bacfad5d1e115..1f9ff1cb0f63489545ab8fd0ebdccfb074426b04 100644
--- a/core/lib/Drupal/Core/Extension/ModuleHandler.php
+++ b/core/lib/Drupal/Core/Extension/ModuleHandler.php
@@ -202,8 +202,10 @@ protected function add($type, $name, $path) {
     // A module freshly added will not be registered on the container yet.
     // ProceduralCall service does not yet know about it.
     // Note in HookCollectorPass:
+    // phpcs:ignore Drupal.Files.LineLength
     // - $container->register(ProceduralCall::class, ProceduralCall::class)->addArgument($collector->includes);
-    // Load all includes so the legacy section of invoke can handle hooks in includes.
+    // Load all includes so the legacy section of invoke can handle hooks in
+    // includes.
     $hook_collector->loadAllIncludes();
     // Register procedural implementations.
     foreach ($hook_collector->getImplementations() as $hook => $moduleImplements) {
diff --git a/core/lib/Drupal/Core/Field/FieldStorageDefinitionListenerInterface.php b/core/lib/Drupal/Core/Field/FieldStorageDefinitionListenerInterface.php
index abb25c4e03f65d81dc7fc12a574bc9fc78754466..1ab9c5c1cd85db805577c48ae868fbc26a0a4974 100644
--- a/core/lib/Drupal/Core/Field/FieldStorageDefinitionListenerInterface.php
+++ b/core/lib/Drupal/Core/Field/FieldStorageDefinitionListenerInterface.php
@@ -3,7 +3,7 @@
 namespace Drupal\Core\Field;
 
 /**
- * Defines an interface for reacting to field storage definition creation, deletion, and updates.
+ * Interface for field storage definition create, delete and update operations.
  */
 interface FieldStorageDefinitionListenerInterface {
 
diff --git a/core/lib/Drupal/Core/Field/WidgetBase.php b/core/lib/Drupal/Core/Field/WidgetBase.php
index d130563c7067c68ad8891ad416833c844aa46724..6b408991cc0243ba47829d500aa9602ba925057c 100644
--- a/core/lib/Drupal/Core/Field/WidgetBase.php
+++ b/core/lib/Drupal/Core/Field/WidgetBase.php
@@ -625,6 +625,7 @@ public static function setWidgetState(array $parents, $field_name, FormStateInte
    */
   protected static function getWidgetStateParents(array $parents, $field_name) {
     // Field processing data is placed at
+    // phpcs:ignore Drupal.Files.LineLength
     // $form_state->get(['field_storage', '#parents', ...$parents..., '#fields', $field_name]),
     // to avoid clashes between field names and $parents parts.
     return array_merge(['field_storage', '#parents'], $parents, ['#fields', $field_name]);
diff --git a/core/lib/Drupal/Core/Form/FormState.php b/core/lib/Drupal/Core/Form/FormState.php
index 2f25316037fb1ff3905cc59303e3c461ad9147f6..7ec819333abbc81b8ef4c288ec5710f3c1994b64 100644
--- a/core/lib/Drupal/Core/Form/FormState.php
+++ b/core/lib/Drupal/Core/Form/FormState.php
@@ -383,7 +383,7 @@ class FormState implements FormStateInterface {
   protected $has_file_element;
 
   /**
-   * Contains references to details elements to render them within vertical tabs.
+   * The references to details elements to render them within vertical tabs.
    *
    * This property is uncacheable.
    *
diff --git a/core/lib/Drupal/Core/Language/LanguageInterface.php b/core/lib/Drupal/Core/Language/LanguageInterface.php
index a4b5acc9e62b31efc76a7ae955a566c28e21e731..2894eb05712812f51513ae9817e8e1ffcba07609 100644
--- a/core/lib/Drupal/Core/Language/LanguageInterface.php
+++ b/core/lib/Drupal/Core/Language/LanguageInterface.php
@@ -36,7 +36,7 @@ interface LanguageInterface {
    * Should be used when we explicitly know that the data referred has no
    * linguistic content.
    *
-   * See https://www.w3.org/International/questions/qa-no-language#nonlinguistic.
+   * @see https://www.w3.org/International/questions/qa-no-language#nonlinguistic
    */
   const LANGCODE_NOT_APPLICABLE = 'zxx';
 
diff --git a/core/lib/Drupal/Core/Routing/UrlGenerator.php b/core/lib/Drupal/Core/Routing/UrlGenerator.php
index 20cc4df7208366a2038433c4bc49c9bc47807525..0133cf17254b5aefdcdc8e3c2bbfb514d040f9ef 100644
--- a/core/lib/Drupal/Core/Routing/UrlGenerator.php
+++ b/core/lib/Drupal/Core/Routing/UrlGenerator.php
@@ -196,13 +196,24 @@ protected function doGenerate(array $variables, array $defaults, array $tokens,
     // variables up to the start of the path must be supplied to there is no
     // gap.
     $optional = TRUE;
-    // Structure of $tokens from the compiled route:
-    // If the path is /admin/config/user-interface/shortcut/manage/{shortcut_set}/add-link-inline
-    // [ [ 0 => 'text', 1 => '/add-link-inline' ], [ 0 => 'variable', 1 => '/', 2 => '[^/]++', 3 => 'shortcut_set' ], [ 0 => 'text', 1 => '/admin/config/user-interface/shortcut/manage' ] ]
+    // The structure of the tokens array varies according to the compiled route.
+    // Examples:
+    // @code
+    // [
+    //  [0 => 'text', 1 => '/add-link-inline'],
+    //  [0 => 'variable', 1 => '/', 2 => '[^/]++', 3 => 'shortcut_set'],
+    //  [0 => 'text', 1 => '/admin/config/user-interface/shortcut/manage'],
+    // ]
+    // @endcode
+    // This is the structure for the "shortcut.link_add_inline" route.
     //
-    // For a simple fixed path, there is just one token.
-    // If the path is /admin/config
-    // [ [ 0 => 'text', 1 => '/admin/config' ] ]
+    // @code
+    // [
+    //   [ 0 => 'text', 1 => '/admin/config' ]
+    // ]
+    // @endcode
+    // This is the structure for a simple fixed path, "/admin/config:. there is
+    // just one token.
     foreach ($tokens as $token) {
       if ('variable' === $token[0]) {
         if (!$optional || !array_key_exists($token[3], $defaults) || (isset($mergedParams[$token[3]]) && (string) $mergedParams[$token[3]] !== (string) $defaults[$token[3]])) {
diff --git a/core/lib/Drupal/Core/StackMiddleware/Session.php b/core/lib/Drupal/Core/StackMiddleware/Session.php
index 2a3be0eea6469778b21ac29d5f4d56c6d8ecd05b..709369f6ddcaafd4f9ee9a720ce453724a4a0a7d 100644
--- a/core/lib/Drupal/Core/StackMiddleware/Session.php
+++ b/core/lib/Drupal/Core/StackMiddleware/Session.php
@@ -60,7 +60,7 @@ public function handle(Request $request, $type = self::MAIN_REQUEST, $catch = TR
   }
 
   /**
-   * Initializes a session backed by persistent store and puts it on the request.
+   * Sets a session backed by persistent store and puts it on the request.
    *
    * Sessions for web requests need to be backed by a persistent session store
    * and a real session handler (responsible for session cookie management).
diff --git a/core/lib/Drupal/Core/Validation/Plugin/Validation/Constraint/UniqueFieldValueValidator.php b/core/lib/Drupal/Core/Validation/Plugin/Validation/Constraint/UniqueFieldValueValidator.php
index 3bae5c3a5bce594aaf0ac6af3431a8c7ef3d4917..857e2c1b09917138ad1ed5b1a988958635516645 100644
--- a/core/lib/Drupal/Core/Validation/Plugin/Validation/Constraint/UniqueFieldValueValidator.php
+++ b/core/lib/Drupal/Core/Validation/Plugin/Validation/Constraint/UniqueFieldValueValidator.php
@@ -124,7 +124,9 @@ public function validate($items, Constraint $constraint): void {
   }
 
   /**
-   * Perform a case-insensitive array intersection, but keep original capitalization.
+   * Performs a case-insensitive array intersection.
+   *
+   * This retains the capitalization of the original string.
    *
    * @param array $orig_values
    *   The original values to be returned.
diff --git a/core/phpcs.xml.dist b/core/phpcs.xml.dist
index baf5ecad909d124c350bcfb044fafaafb7196a4d..44940ee0ea748bb90ab346551fb10e2cfd724d8a 100644
--- a/core/phpcs.xml.dist
+++ b/core/phpcs.xml.dist
@@ -109,6 +109,14 @@
   <rule ref="Drupal.ControlStructures.InlineControlStructure"/>
   <rule ref="Drupal.Files.EndFileNewline"/>
   <rule ref="Drupal.Files.FileEncoding"/>
+  <rule ref="Drupal.Files.LineLength">
+    <include-pattern>*/core/lib/*</include-pattern>
+    <exclude-pattern>*/core/lib/*/*Trait</exclude-pattern>
+    <include-pattern>*/core/includes/*</include-pattern>
+    <include-pattern>*/core/profiles/*</include-pattern>
+    <include-pattern>*/core/recipes/*</include-pattern>
+    <include-pattern>*/core/themes/*</include-pattern>
+  </rule>
   <rule ref="Drupal.Files.TxtFileLineLength"/>
   <rule ref="Drupal.Formatting.MultiLineAssignment"/>
   <rule ref="Drupal.Formatting.MultipleStatementAlignment"/>
diff --git a/core/profiles/demo_umami/modules/demo_umami_content/src/InstallHelper.php b/core/profiles/demo_umami/modules/demo_umami_content/src/InstallHelper.php
index d999eb87323916c9e08e4b4c4666f22a79eacfad..3d8e38c1d3bd70d252192f4e27621ed17336b074 100644
--- a/core/profiles/demo_umami/modules/demo_umami_content/src/InstallHelper.php
+++ b/core/profiles/demo_umami/modules/demo_umami_content/src/InstallHelper.php
@@ -235,7 +235,7 @@ protected function saveTermId($vocabulary, $term_csv_id, $tid) {
   }
 
   /**
-   * Retrieves the Media Image ID of a media image saved during the import process.
+   * Retrieves th ID of a media image saved during the import process.
    *
    * @param int $media_image_csv_id
    *   The media image's ID from the CSV file.