diff --git a/core/core.api.php b/core/core.api.php
index b2741a5063185831c6fe0957d3cdab0680d99adc..3160365562816049605ddd2786a1d53d5b63cc2f 100644
--- a/core/core.api.php
+++ b/core/core.api.php
@@ -2052,7 +2052,7 @@ function hook_queue_info_alter(&$queues) {
 }
 
 /**
- * Alter the information provided in \Drupal\Core\Condition\ConditionManager::getDefinitions().
+ * Alter the information provided in ConditionManager::getDefinitions().
  *
  * @param array $definitions
  *   The array of condition definitions.
diff --git a/core/lib/Drupal/Component/Plugin/Discovery/StaticDiscoveryDecorator.php b/core/lib/Drupal/Component/Plugin/Discovery/StaticDiscoveryDecorator.php
index 72405d513940cb61f5623711b58187a36ad6cbd2..9d02fd3ef2a00c273640e4a9018cd1ea41dd405b 100644
--- a/core/lib/Drupal/Component/Plugin/Discovery/StaticDiscoveryDecorator.php
+++ b/core/lib/Drupal/Component/Plugin/Discovery/StaticDiscoveryDecorator.php
@@ -22,7 +22,7 @@ class StaticDiscoveryDecorator extends StaticDiscovery {
   protected $registerDefinitions;
 
   /**
-   * Constructs a \Drupal\Component\Plugin\Discovery\StaticDiscoveryDecorator object.
+   * Constructs StaticDiscoveryDecorator object.
    *
    * @param \Drupal\Component\Plugin\Discovery\DiscoveryInterface $decorated
    *   The discovery object that is being decorated.
diff --git a/core/lib/Drupal/Component/Plugin/PluginManagerBase.php b/core/lib/Drupal/Component/Plugin/PluginManagerBase.php
index 55343a27dad4d3da682a6c82dead65d5c1d1216c..3ce0076d7862a78768d67629c79fe8e7782f9212 100644
--- a/core/lib/Drupal/Component/Plugin/PluginManagerBase.php
+++ b/core/lib/Drupal/Component/Plugin/PluginManagerBase.php
@@ -27,7 +27,7 @@ abstract class PluginManagerBase implements PluginManagerInterface {
   protected $factory;
 
   /**
-   * The object that returns the preconfigured plugin instance appropriate for a particular runtime condition.
+   * The preconfigured plugin instance for a particular runtime condition.
    *
    * @var \Drupal\Component\Plugin\Mapper\MapperInterface|null
    */
diff --git a/core/lib/Drupal/Component/Utility/NestedArray.php b/core/lib/Drupal/Component/Utility/NestedArray.php
index 80f3822cf42b9319ae869f26f51f7604a5beed1b..b26eec3e46aff7aa43491f8e99e612bd4e13fac6 100644
--- a/core/lib/Drupal/Component/Utility/NestedArray.php
+++ b/core/lib/Drupal/Component/Utility/NestedArray.php
@@ -3,7 +3,7 @@
 namespace Drupal\Component\Utility;
 
 /**
- * Provides helpers to perform operations on nested arrays and array keys of variable depth.
+ * Provides methods for working with nested arrays of variable depth.
  *
  * @ingroup utility
  */
diff --git a/core/lib/Drupal/Core/Config/ConfigImporter.php b/core/lib/Drupal/Core/Config/ConfigImporter.php
index f9dd4b7b72647a21ffd53245b520952887d93fed..e600353017cfc9b21d7487ff45052ca573190f1f 100644
--- a/core/lib/Drupal/Core/Config/ConfigImporter.php
+++ b/core/lib/Drupal/Core/Config/ConfigImporter.php
@@ -123,7 +123,7 @@ class ConfigImporter {
   protected $themeHandler;
 
   /**
-   * Flag set to import system.theme during processing theme install and uninstalls.
+   * Indicates if a system theme is in processing theme install and uninstalls.
    *
    * @var bool
    */
diff --git a/core/lib/Drupal/Core/Database/Query/Condition.php b/core/lib/Drupal/Core/Database/Query/Condition.php
index 06cb31568c2c087555e651ed580c03e05fd3571c..bbe2f2be2f43f9dd16872de6ffa3dde4d7357f1c 100644
--- a/core/lib/Drupal/Core/Database/Query/Condition.php
+++ b/core/lib/Drupal/Core/Database/Query/Condition.php
@@ -62,7 +62,7 @@ class Condition implements ConditionInterface, \Countable {
   protected $changed = TRUE;
 
   /**
-   * The identifier of the query placeholder this condition has been compiled against.
+   * The query placeholder identifier this condition has been compiled against.
    *
    * @var string
    */
diff --git a/core/lib/Drupal/Core/Datetime/DateFormatter.php b/core/lib/Drupal/Core/Datetime/DateFormatter.php
index 4b4a54c24e98876134d3868b8a813834299a6e81..7c800d8e4537d3620cbe331c8178df55a29a5e4f 100644
--- a/core/lib/Drupal/Core/Datetime/DateFormatter.php
+++ b/core/lib/Drupal/Core/Datetime/DateFormatter.php
@@ -33,7 +33,7 @@ class DateFormatter implements DateFormatterInterface {
   protected $dateFormatStorage;
 
   /**
-   * Language manager for retrieving the default langcode when none is specified.
+   * The Language manager.
    *
    * @var \Drupal\Core\Language\LanguageManagerInterface
    */
diff --git a/core/lib/Drupal/Core/DefaultContent/Finder.php b/core/lib/Drupal/Core/DefaultContent/Finder.php
index fb35891f6ff01e70a759a46d4f51a17efc125908..5573ba9e0f687ec7f020ca1e064ba95c0b5df33f 100644
--- a/core/lib/Drupal/Core/DefaultContent/Finder.php
+++ b/core/lib/Drupal/Core/DefaultContent/Finder.php
@@ -19,7 +19,9 @@
 final class Finder {
 
   /**
-   * The content entity data to import, in dependency order, keyed by entity UUID.
+   * The content entity data to import.
+   *
+   * The entities are in dependency order, keyed by entity UUID.
    *
    * @var array<string, array<mixed>>
    */
diff --git a/core/lib/Drupal/Core/Extension/Extension.php b/core/lib/Drupal/Core/Extension/Extension.php
index 28b58436615458a07b9c9b55e3714b4137180817..0a45a65e6f91e0e43295dd71fb6a3588c4f2673f 100644
--- a/core/lib/Drupal/Core/Extension/Extension.php
+++ b/core/lib/Drupal/Core/Extension/Extension.php
@@ -21,7 +21,9 @@ class Extension {
   protected $type;
 
   /**
-   * The relative pathname of the extension (e.g., 'core/modules/node/node.info.yml').
+   * The relative pathname of the extension.
+   *
+   * An example relative pathname is 'core/modules/node/node.info.yml'.
    *
    * @var string
    */
diff --git a/core/lib/Drupal/Core/Field/Annotation/FieldType.php b/core/lib/Drupal/Core/Field/Annotation/FieldType.php
index 293e6341ba9cba7c4f450fe7de0547df2694afab..252a691b629e2896ed8af939b8ddc057c48ee45c 100644
--- a/core/lib/Drupal/Core/Field/Annotation/FieldType.php
+++ b/core/lib/Drupal/Core/Field/Annotation/FieldType.php
@@ -89,7 +89,7 @@ class FieldType extends DataType {
   public $default_formatter;
 
   /**
-   * A boolean stating that fields of this type cannot be created through the UI.
+   * Indicates that fields of this type cannot be created through the UI.
    *
    * @var bool
    */
diff --git a/core/lib/Drupal/Core/Plugin/Discovery/AttributeClassDiscovery.php b/core/lib/Drupal/Core/Plugin/Discovery/AttributeClassDiscovery.php
index 38b0ff715b034e6ecefd4390c81564024a227890..4bf0eee09b56b1daad04eca4dfaaa490d246f4f8 100644
--- a/core/lib/Drupal/Core/Plugin/Discovery/AttributeClassDiscovery.php
+++ b/core/lib/Drupal/Core/Plugin/Discovery/AttributeClassDiscovery.php
@@ -11,7 +11,7 @@
 class AttributeClassDiscovery extends ComponentAttributeClassDiscovery {
 
   /**
-   * A suffix to append to each PSR-4 directory associated with a base namespace.
+   * Suffix to append to each PSR-4 directory associated with a base namespace.
    *
    * This suffix is used to form the directories where plugins are found.
    *
diff --git a/core/lib/Drupal/Core/Plugin/Discovery/InfoHookDecorator.php b/core/lib/Drupal/Core/Plugin/Discovery/InfoHookDecorator.php
index df31a1682ea35ba95096ec98a3227835a05a7cb5..173eaa7308a74d44ba10b57bcc942243db9de518 100644
--- a/core/lib/Drupal/Core/Plugin/Discovery/InfoHookDecorator.php
+++ b/core/lib/Drupal/Core/Plugin/Discovery/InfoHookDecorator.php
@@ -20,7 +20,7 @@ class InfoHookDecorator implements DiscoveryInterface {
   protected $decorated;
 
   /**
-   * The name of the info hook that will be implemented by this discovery instance.
+   * The name of the info hook that will be implemented.
    *
    * @var string
    */
diff --git a/core/modules/ckeditor5/src/Plugin/Validation/Constraint/SourceEditingRedundantTagsConstraint.php b/core/modules/ckeditor5/src/Plugin/Validation/Constraint/SourceEditingRedundantTagsConstraint.php
index d1a60b972a98a46f868937db420e11bc602a878e..703f31e462ae9440b4aa8a54f738a1bc14c50a2c 100644
--- a/core/modules/ckeditor5/src/Plugin/Validation/Constraint/SourceEditingRedundantTagsConstraint.php
+++ b/core/modules/ckeditor5/src/Plugin/Validation/Constraint/SourceEditingRedundantTagsConstraint.php
@@ -27,7 +27,7 @@ class SourceEditingRedundantTagsConstraint extends SymfonyConstraint {
   public $enabledPluginsMessage = 'The following @element_type(s) are already supported by enabled plugins and should not be added to the Source Editing "Manually editable HTML tags" field: %overlapping_tags.';
 
   /**
-   * When a Source Editing element is added that an enabled plugin optionally supports.
+   * When a Source Editing element is added that an enabled plugin supports.
    *
    * @var string
    */
diff --git a/core/modules/config_translation/tests/src/Functional/ConfigTranslationUiTestBase.php b/core/modules/config_translation/tests/src/Functional/ConfigTranslationUiTestBase.php
index 1d017a01cca901207101211e7f4184717af88038..85c2b0f916c592b0cac60bff6e95811877116d98 100644
--- a/core/modules/config_translation/tests/src/Functional/ConfigTranslationUiTestBase.php
+++ b/core/modules/config_translation/tests/src/Functional/ConfigTranslationUiTestBase.php
@@ -191,7 +191,7 @@ protected function assertDisabledTextarea(string $id): void {
   }
 
   /**
-   * Helper function that returns a .po file with a given number of plural forms.
+   * Returns a .po file with a given number of plural forms.
    */
   public function getPoFile($plurals) {
     $po_file = [];
diff --git a/core/modules/content_translation/content_translation.module b/core/modules/content_translation/content_translation.module
index a4a023d8b7c569776b592e07ba0e8fdb92ca9dd8..fd038312f285b59a9530d7dc45ce9c63c1094069 100644
--- a/core/modules/content_translation/content_translation.module
+++ b/core/modules/content_translation/content_translation.module
@@ -142,7 +142,7 @@ function content_translation_language_configuration_element_process(array $eleme
 }
 
 /**
- * Form validation handler for element added with content_translation_language_configuration_element_process().
+ * Form validation handler for the language_configuration form element.
  *
  * Checks whether translation can be enabled: if language is set to one of the
  * special languages and language selector is not hidden, translation cannot be
@@ -165,7 +165,7 @@ function content_translation_language_configuration_element_validate($element, F
 }
 
 /**
- * Form submission handler for element added with content_translation_language_configuration_element_process().
+ * Form submission handler for element.
  *
  * Stores the content translation settings.
  *
diff --git a/core/modules/contextual/tests/src/Functional/ContextualDynamicContextTest.php b/core/modules/contextual/tests/src/Functional/ContextualDynamicContextTest.php
index 25e99f5d18208304f528517187a2282b9fb6f571..f1d2c596821d078a8dee3105605eb7f73cc8e155 100644
--- a/core/modules/contextual/tests/src/Functional/ContextualDynamicContextTest.php
+++ b/core/modules/contextual/tests/src/Functional/ContextualDynamicContextTest.php
@@ -243,7 +243,7 @@ protected function assertContextualLinkPlaceHolder(string $id): void {
   }
 
   /**
-   * Asserts that a contextual link placeholder with the given id does not exist.
+   * Asserts that a contextual link placeholder with a given id does not exist.
    *
    * @param string $id
    *   A contextual link id.
diff --git a/core/modules/file/src/FileAccessFormatterControlHandlerInterface.php b/core/modules/file/src/FileAccessFormatterControlHandlerInterface.php
index a1912e05ee28802049c67b5051a6e10ec28f0102..ad94323676ec736046583e979453cd75f66ab802 100644
--- a/core/modules/file/src/FileAccessFormatterControlHandlerInterface.php
+++ b/core/modules/file/src/FileAccessFormatterControlHandlerInterface.php
@@ -5,7 +5,7 @@
 use Drupal\Core\Entity\EntityAccessControlHandlerInterface;
 
 /**
- * Defines an interface for file access handlers that need to run on file formatters.
+ * Defines an interface for file access handlers which runs on file formatters.
  *
  * \Drupal\Core\Field\Plugin\Field\FieldFormatter\EntityReferenceFormatterBase,
  * which file and image formatters extend, checks 'view' access on the
diff --git a/core/modules/locale/locale.module b/core/modules/locale/locale.module
index a5dfb9252a0c9316957e249dc2ad7e991171d404..57b662e484f214b508921b600d00423f25ff24f8 100644
--- a/core/modules/locale/locale.module
+++ b/core/modules/locale/locale.module
@@ -101,7 +101,7 @@
 const LOCALE_TRANSLATION_DEFAULT_SERVER_PATTERN = \Drupal::TRANSLATION_DEFAULT_SERVER_PATTERN;
 
 /**
- * The number of seconds that the translations status entry should be considered.
+ * The number of seconds the translations status entry should be considered.
  */
 const LOCALE_TRANSLATION_STATUS_TTL = 600;
 
diff --git a/core/modules/migrate/tests/src/Unit/process/SkipOnEmptyTest.php b/core/modules/migrate/tests/src/Unit/process/SkipOnEmptyTest.php
index 33e630977f6a682c0096eae967a942e181f3b2d7..36fe27350b7c1591110bdc9c2de617319815e36d 100644
--- a/core/modules/migrate/tests/src/Unit/process/SkipOnEmptyTest.php
+++ b/core/modules/migrate/tests/src/Unit/process/SkipOnEmptyTest.php
@@ -89,7 +89,7 @@ public function testRowSkipWithMessage(): void {
   }
 
   /**
-   * Tests repeated execution of a process plugin can reset the pipeline stoppage correctly.
+   * Tests repeated execution of a process plugin resets the pipeline stoppage.
    */
   public function testMultipleTransforms(): void {
     $configuration['method'] = 'process';
diff --git a/core/modules/options/tests/src/Functional/OptionsFloatFieldImportTest.php b/core/modules/options/tests/src/Functional/OptionsFloatFieldImportTest.php
index 9b97f3d3d6b3a331001ab4c5adb41c0c03ab9873..508e1bddbdddbe695a3d997901f6b233f48f592b 100644
--- a/core/modules/options/tests/src/Functional/OptionsFloatFieldImportTest.php
+++ b/core/modules/options/tests/src/Functional/OptionsFloatFieldImportTest.php
@@ -9,7 +9,7 @@
 use Drupal\Tests\field\Functional\FieldTestBase;
 
 /**
- * Tests option fields can be updated and created through config synchronization.
+ * Tests option fields can be updated and created by config synchronization.
  *
  * @group options
  */
diff --git a/core/modules/rest/src/Plugin/views/row/DataFieldRow.php b/core/modules/rest/src/Plugin/views/row/DataFieldRow.php
index c312b48553bb79b25e7895ad7947826ff02fd25c..3c429d153aac787d6f8039d961eff78c211e20ef 100644
--- a/core/modules/rest/src/Plugin/views/row/DataFieldRow.php
+++ b/core/modules/rest/src/Plugin/views/row/DataFieldRow.php
@@ -109,7 +109,7 @@ public function buildOptionsForm(&$form, FormStateInterface $form_state) {
   }
 
   /**
-   * Form element validation handler for \Drupal\rest\Plugin\views\row\DataFieldRow::buildOptionsForm().
+   * Form element validation handler.
    */
   public function validateAliasName($element, FormStateInterface $form_state) {
     if (preg_match('@[^A-Za-z0-9_-]+@', $element['#value'])) {
diff --git a/core/modules/rest/tests/src/Functional/Views/StyleSerializerEntityTest.php b/core/modules/rest/tests/src/Functional/Views/StyleSerializerEntityTest.php
index 01ffcc13905967787ed1548966bbbe55b69b0457..9175d6f5da496f1ac75d1eb7b6bd8a9b70517b6f 100644
--- a/core/modules/rest/tests/src/Functional/Views/StyleSerializerEntityTest.php
+++ b/core/modules/rest/tests/src/Functional/Views/StyleSerializerEntityTest.php
@@ -56,7 +56,7 @@ class StyleSerializerEntityTest extends ViewTestBase {
   public static $testViews = ['test_serializer_display_field', 'test_serializer_display_entity', 'test_serializer_display_entity_translated', 'test_serializer_node_display_field', 'test_serializer_node_exposed_filter', 'test_serializer_shared_path'];
 
   /**
-   * A user with administrative privileges to look at test entity and configure views.
+   * A user with permissions to look at test entity and configure views.
    *
    * @var \Drupal\user\Entity\User|false
    *
diff --git a/core/modules/rest/tests/src/Functional/Views/StyleSerializerTest.php b/core/modules/rest/tests/src/Functional/Views/StyleSerializerTest.php
index b30bc34ae97ea2150bf7803f1c8f794738be6abd..2b301dad2f34b77a4cdcb2ace45fcfcc560576c6 100644
--- a/core/modules/rest/tests/src/Functional/Views/StyleSerializerTest.php
+++ b/core/modules/rest/tests/src/Functional/Views/StyleSerializerTest.php
@@ -53,7 +53,7 @@ class StyleSerializerTest extends ViewTestBase {
   public static $testViews = ['test_serializer_display_field', 'test_serializer_display_entity', 'test_serializer_display_entity_translated', 'test_serializer_node_display_field', 'test_serializer_node_exposed_filter', 'test_serializer_shared_path'];
 
   /**
-   * A user with administrative privileges to look at test entity and configure views.
+   * A user with permissions to look at test entity and configure views.
    *
    * @var \Drupal\user\Entity\User|false
    */
diff --git a/core/modules/serialization/src/EventSubscriber/UserRouteAlterSubscriber.php b/core/modules/serialization/src/EventSubscriber/UserRouteAlterSubscriber.php
index 103e79a56d4803a95e9e9700a37c9dcc4e8196e4..5299cc3019529a723b21b409a2e9d02ac3136cf7 100644
--- a/core/modules/serialization/src/EventSubscriber/UserRouteAlterSubscriber.php
+++ b/core/modules/serialization/src/EventSubscriber/UserRouteAlterSubscriber.php
@@ -7,7 +7,7 @@
 use Symfony\Component\EventDispatcher\EventSubscriberInterface;
 
 /**
- * Alters user authentication routes to support additional serialization formats.
+ * Alters user authentication routes to support added serialization formats.
  */
 class UserRouteAlterSubscriber implements EventSubscriberInterface {
 
diff --git a/core/modules/system/tests/modules/module_handler_test_multiple/module_handler_test_multiple.install b/core/modules/system/tests/modules/module_handler_test_multiple/module_handler_test_multiple.install
index c78001b255a389a0954d95a58afea3d4d994a654..360d668dc6a3e716cd0c74caf032c8dc0beb67cc 100644
--- a/core/modules/system/tests/modules/module_handler_test_multiple/module_handler_test_multiple.install
+++ b/core/modules/system/tests/modules/module_handler_test_multiple/module_handler_test_multiple.install
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Install, update and uninstall functions for the module_handler_test_multiple module.
+ * Install functions for the module_handler_test_multiple module.
  */
 
 declare(strict_types=1);
diff --git a/core/modules/system/tests/modules/module_test/module_test.file.inc b/core/modules/system/tests/modules/module_test/module_test.file.inc
index 601c8b86646f56f94f7258afc000786f0e3ec06a..df26b1b233944c3f73f93dcfc8298422d3336fcc 100644
--- a/core/modules/system/tests/modules/module_test/module_test.file.inc
+++ b/core/modules/system/tests/modules/module_test/module_test.file.inc
@@ -2,7 +2,10 @@
 
 /**
  * @file
- * A file to test \Drupal::moduleHandler()->getImplementationInfo() loading includes.
+ * Install, update and uninstall functions for the module_test module.
+ *
+ * Provides a hook to test \Drupal::moduleHandler()->getImplementationInfo()
+ * loading includes.
  */
 
 declare(strict_types=1);
diff --git a/core/modules/system/tests/modules/update_test_description/update_test_description.install b/core/modules/system/tests/modules/update_test_description/update_test_description.install
index 33a3d2ebeea56724fb1a7184fe490df1227b86fa..d1b07d8cbd2c00142eba5c39044759acf14b0d8a 100644
--- a/core/modules/system/tests/modules/update_test_description/update_test_description.install
+++ b/core/modules/system/tests/modules/update_test_description/update_test_description.install
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Install, update and uninstall functions for the update_test_descriptions module.
+ * Update functions for the update_test_descriptions module.
  */
 
 declare(strict_types=1);
diff --git a/core/modules/system/tests/modules/update_test_invalid_hook/update_test_invalid_hook.install b/core/modules/system/tests/modules/update_test_invalid_hook/update_test_invalid_hook.install
index 4b0bfc872e401e9ae8d25e9d8330ea053277f9dd..db15caa3044ce4d3019f5a8b4230d70217cc8ae0 100644
--- a/core/modules/system/tests/modules/update_test_invalid_hook/update_test_invalid_hook.install
+++ b/core/modules/system/tests/modules/update_test_invalid_hook/update_test_invalid_hook.install
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Install, update and uninstall functions for the update_test_invalid_hook module.
+ * Update functions for the update_test_invalid_hook module.
  */
 
 declare(strict_types=1);
diff --git a/core/modules/system/tests/modules/update_test_no_preexisting/update_test_no_preexisting.install b/core/modules/system/tests/modules/update_test_no_preexisting/update_test_no_preexisting.install
index 8f95e9c9387e73985af1793ab8350ec777b533c5..596bf47e27d931655b53e239396cc5bd64a3fcf0 100644
--- a/core/modules/system/tests/modules/update_test_no_preexisting/update_test_no_preexisting.install
+++ b/core/modules/system/tests/modules/update_test_no_preexisting/update_test_no_preexisting.install
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Install, update and uninstall functions for the update_test_no_preexisting module.
+ * Update functions for the update_test_no_preexisting module.
  */
 
 declare(strict_types=1);
diff --git a/core/modules/text/src/Plugin/Field/FieldFormatter/TextTrimmedFormatter.php b/core/modules/text/src/Plugin/Field/FieldFormatter/TextTrimmedFormatter.php
index bcf22ecf8026ef83d9ecb34108a13dc523409b0b..bb0b6ef170099a920e90935becc8aa9d30f8049e 100644
--- a/core/modules/text/src/Plugin/Field/FieldFormatter/TextTrimmedFormatter.php
+++ b/core/modules/text/src/Plugin/Field/FieldFormatter/TextTrimmedFormatter.php
@@ -101,7 +101,7 @@ public function viewElements(FieldItemListInterface $items, $langcode) {
   }
 
   /**
-   * Pre-render callback: Renders a processed text element's #markup as a summary.
+   * Pre-render callback: Renders a processed text element's #markup summary.
    *
    * @param array $element
    *   A structured array with the following key-value pairs:
diff --git a/core/modules/views/src/Plugin/views/argument/ArgumentPluginBase.php b/core/modules/views/src/Plugin/views/argument/ArgumentPluginBase.php
index 36e877878860d36b74e46f5df600748650be4fa9..18081e18e405cc49e9428234bcb298a18f8111fa 100644
--- a/core/modules/views/src/Plugin/views/argument/ArgumentPluginBase.php
+++ b/core/modules/views/src/Plugin/views/argument/ArgumentPluginBase.php
@@ -71,7 +71,7 @@ abstract class ArgumentPluginBase extends HandlerBase implements CacheableDepend
   public $value = NULL;
 
   /**
-   * The table to use for the name, should it not be in the same table as the argument.
+   * The table to use for the name, if it is not the same table as the argument.
    *
    * @var string
    */
diff --git a/core/modules/views/src/Plugin/views/display/PathPluginBase.php b/core/modules/views/src/Plugin/views/display/PathPluginBase.php
index d784ca4788ab464639c2104bae45faaa254f2ddf..65eaa6991e4ce686cbd79c1e3c6b5e5d96e5852d 100644
--- a/core/modules/views/src/Plugin/views/display/PathPluginBase.php
+++ b/core/modules/views/src/Plugin/views/display/PathPluginBase.php
@@ -103,7 +103,10 @@ protected function isDefaultTabPath() {
   }
 
   /**
-   * Overrides \Drupal\views\Plugin\views\display\DisplayPluginBase:defineOptions().
+   * Overrides view display plugin base.
+   *
+   * Overrides display plugin definition options with
+   * \Drupal\views\Plugin\views\display\DisplayPluginBase:defineOptions().
    */
   protected function defineOptions() {
     $options = parent::defineOptions();
diff --git a/core/modules/views/src/Plugin/views/filter/InOperator.php b/core/modules/views/src/Plugin/views/filter/InOperator.php
index c1a80ef192eaa0946a69ad1347995d0c887fe09e..7c712975f86fe76ed5be793919d6e28345d98307 100644
--- a/core/modules/views/src/Plugin/views/filter/InOperator.php
+++ b/core/modules/views/src/Plugin/views/filter/InOperator.php
@@ -11,7 +11,7 @@
 use Drupal\Core\Form\OptGroup;
 
 /**
- * Simple filter to handle matching of multiple options selectable via checkboxes.
+ * Filter to handle matching of multiple options selectable via checkboxes.
  *
  * Definition items:
  * - options callback: The function to call in order to generate the value options. If omitted, the options 'Yes' and 'No' will be used.
diff --git a/core/modules/views/tests/src/Functional/Handler/FieldWebTest.php b/core/modules/views/tests/src/Functional/Handler/FieldWebTest.php
index f794cd0f64a59a103a8e9c8290382158e21b8251..b751abcb5e7dd8268f944009b09a34dc7ae189eb 100644
--- a/core/modules/views/tests/src/Functional/Handler/FieldWebTest.php
+++ b/core/modules/views/tests/src/Functional/Handler/FieldWebTest.php
@@ -153,7 +153,7 @@ protected function assertSubString(string $haystack, string $needle, string $mes
   }
 
   /**
-   * Assertion helper which checks whether a string is not part of another string.
+   * Asserts that a string is not part of another string.
    *
    * @param string $haystack
    *   The value to search in.
diff --git a/core/modules/views/tests/src/Functional/Wizard/TaggedWithTest.php b/core/modules/views/tests/src/Functional/Wizard/TaggedWithTest.php
index a67ae3a46661baf0809cf3ffda4c9c50241dd22d..c0431fff40b6e6f7a5b7b99a291a5884fc170610 100644
--- a/core/modules/views/tests/src/Functional/Wizard/TaggedWithTest.php
+++ b/core/modules/views/tests/src/Functional/Wizard/TaggedWithTest.php
@@ -194,7 +194,9 @@ public function testTaggedWith(): void {
   }
 
   /**
-   * Tests that the "tagged with" form element only shows for node types that support it.
+   * Tests the "tagged with" form element.
+   *
+   * Confirm that the element only shows for node types that support it.
    */
   public function testTaggedWithByNodeType(): void {
     // The tagging field is associated with one of our node types only. So the
diff --git a/core/modules/views/tests/src/Kernel/Plugin/DisplayKernelTest.php b/core/modules/views/tests/src/Kernel/Plugin/DisplayKernelTest.php
index 9d43b6f82c43400960116492d8a1171908905120..9b6fd6d23c1e3985692420ae1aad7b133e086844 100644
--- a/core/modules/views/tests/src/Kernel/Plugin/DisplayKernelTest.php
+++ b/core/modules/views/tests/src/Kernel/Plugin/DisplayKernelTest.php
@@ -87,7 +87,7 @@ public function testDefaultOptions(): void {
   }
 
   /**
-   * Tests the \Drupal\views\Plugin\views\display\DisplayPluginBase::getPlugin() method.
+   * Tests \Drupal\views\Plugin\views\display\DisplayPluginBase::getPlugin().
    */
   public function testGetPlugin(): void {
     $view = Views::getView('test_display_defaults');
diff --git a/core/modules/views_ui/src/ViewFormBase.php b/core/modules/views_ui/src/ViewFormBase.php
index 67a71bdd55228a06f200f8ccccc51c4becc60e17..dd4369beddc94b75058ac365c5be0bd0374dd7ca 100644
--- a/core/modules/views_ui/src/ViewFormBase.php
+++ b/core/modules/views_ui/src/ViewFormBase.php
@@ -141,7 +141,7 @@ public function getDisplayTabs(ViewUI $view) {
   }
 
   /**
-   * Controls whether or not the default display should have its own tab on edit.
+   * Returns whether or not the default display should have its own tab on edit.
    */
   public function isDefaultDisplayShown(ViewUI $view) {
     // Always show the default display for advanced users who prefer that mode.
diff --git a/core/profiles/demo_umami/demo_umami.install b/core/profiles/demo_umami/demo_umami.install
index a9f04bf0c1bb59d2ebc0589fac27ba7ebf9f1a4f..28c696b16cebd82fe02c80c7f87ed32d30462a71 100644
--- a/core/profiles/demo_umami/demo_umami.install
+++ b/core/profiles/demo_umami/demo_umami.install
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Install, update and uninstall functions for the demo_umami installation profile.
+ * Install, update and uninstall functions for the demo_umami profile.
  */
 
 use Drupal\shortcut\Entity\Shortcut;
diff --git a/core/profiles/standard/standard.install b/core/profiles/standard/standard.install
index 635f2c2b7748a419784a734f75a9d8283e6b62bd..89b96e5307cc4bf2f5f3709317b1885cfe298af6 100644
--- a/core/profiles/standard/standard.install
+++ b/core/profiles/standard/standard.install
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Install, update and uninstall functions for the standard installation profile.
+ * Install, update and uninstall functions for the standard profile.
  */
 
 use Drupal\shortcut\Entity\Shortcut;
diff --git a/core/tests/Drupal/FunctionalTests/BrowserTestBaseTest.php b/core/tests/Drupal/FunctionalTests/BrowserTestBaseTest.php
index a9b1c2ae67cae1da14b332ea434e93dc8d844f63..b817f270486c0e83b1d3626fa29571e87b8794b2 100644
--- a/core/tests/Drupal/FunctionalTests/BrowserTestBaseTest.php
+++ b/core/tests/Drupal/FunctionalTests/BrowserTestBaseTest.php
@@ -633,7 +633,7 @@ public function testVarDump(): void {
   }
 
   /**
-   * Test if setting an invalid scheme in SIMPLETEST_BASE_URL throws an exception.
+   * Tests an invalid scheme in SIMPLETEST_BASE_URL throws an exception.
    */
   public function testSimpleTestBaseUrlValidation(): void {
     putenv('SIMPLETEST_BASE_URL=mysql://user:pass@localhost/database');
diff --git a/core/tests/Drupal/FunctionalTests/Datetime/TimestampTest.php b/core/tests/Drupal/FunctionalTests/Datetime/TimestampTest.php
index d7e8a2342e1626909e6a3e21d24616b5c4456732..ff6ad464d9b6adf249f240553597cdae31a95714 100644
--- a/core/tests/Drupal/FunctionalTests/Datetime/TimestampTest.php
+++ b/core/tests/Drupal/FunctionalTests/Datetime/TimestampTest.php
@@ -20,7 +20,10 @@
 class TimestampTest extends BrowserTestBase {
 
   /**
-   * An array of display options to pass to EntityDisplayRepositoryInterface::getViewDisplay().
+   * An array of display options.
+   *
+   * These options are passed to
+   * EntityDisplayRepositoryInterface::getViewDisplay().
    *
    * @var array
    */
diff --git a/core/tests/Drupal/FunctionalTests/Installer/InstallerLanguagePageTest.php b/core/tests/Drupal/FunctionalTests/Installer/InstallerLanguagePageTest.php
index 18c8c74fa94f0ddc3f1b595501d7e5157f181484..0d12f466fdae4b0e0d71cf50543003c50bc07c05 100644
--- a/core/tests/Drupal/FunctionalTests/Installer/InstallerLanguagePageTest.php
+++ b/core/tests/Drupal/FunctionalTests/Installer/InstallerLanguagePageTest.php
@@ -9,7 +9,7 @@
 // cspell:ignore xoxo
 
 /**
- * Verifies that the installer language list combines local and remote languages.
+ * Verifies that the installer language list uses local and remote languages.
  *
  * @group Installer
  */
diff --git a/core/tests/Drupal/KernelTests/Core/Cache/DatabaseBackendTest.php b/core/tests/Drupal/KernelTests/Core/Cache/DatabaseBackendTest.php
index 04aa222706b995dcd085e7cddecba8fb1b3abc09..31f1e3f6309d422366442c1b5303b33b9e6f8b3e 100644
--- a/core/tests/Drupal/KernelTests/Core/Cache/DatabaseBackendTest.php
+++ b/core/tests/Drupal/KernelTests/Core/Cache/DatabaseBackendTest.php
@@ -121,7 +121,7 @@ protected function getNumRows(): int {
   }
 
   /**
-   * Test that the service "cache_tags.invalidator.checksum" is backend overridable.
+   * Tests that "cache_tags.invalidator.checksum" is backend overridable.
    */
   public function testCacheTagsInvalidatorChecksumIsBackendOverridable(): void {
     $definition = $this->container->getDefinition('cache_tags.invalidator.checksum');
diff --git a/core/tests/Drupal/KernelTests/Core/Http/LinkRelationsTest.php b/core/tests/Drupal/KernelTests/Core/Http/LinkRelationsTest.php
index a8401e7a8c426890df4e29873f8e1113c593b3b2..934dd91d07c8f9b16edde2970915e5f727814668 100644
--- a/core/tests/Drupal/KernelTests/Core/Http/LinkRelationsTest.php
+++ b/core/tests/Drupal/KernelTests/Core/Http/LinkRelationsTest.php
@@ -15,7 +15,7 @@
 class LinkRelationsTest extends KernelTestBase {
 
   /**
-   * Tests correct Link Relations are returned from the Link Relation Type Manager.
+   * Tests the Link Relations returned from the Link Relation Type Manager.
    */
   public function testAvailableLinkRelationships(): void {
     /** @var \Drupal\Core\Http\LinkRelationTypeManager $link_relation_type_manager */
diff --git a/core/tests/Drupal/KernelTests/Core/Plugin/InspectionTest.php b/core/tests/Drupal/KernelTests/Core/Plugin/InspectionTest.php
index df96e3686540dbbfb0a960e0971f78cb7ea60148..62358312318c08266d83036f2b31151578407bb1 100644
--- a/core/tests/Drupal/KernelTests/Core/Plugin/InspectionTest.php
+++ b/core/tests/Drupal/KernelTests/Core/Plugin/InspectionTest.php
@@ -17,7 +17,7 @@ class InspectionTest extends PluginTestBase {
   protected static $modules = ['node', 'user'];
 
   /**
-   * Ensure the test plugins correctly implement getPluginId() and getPluginDefinition().
+   * Tests getPluginId() and getPluginDefinition().
    */
   public function testInspection(): void {
     foreach (['user_login'] as $id) {
diff --git a/core/tests/Drupal/KernelTests/Core/Validation/UniqueValuesConstraintValidatorTest.php b/core/tests/Drupal/KernelTests/Core/Validation/UniqueValuesConstraintValidatorTest.php
index 759c3247af472f2ebd1490a7c5b9d8f556a79888..c43f098493529156dcadeb1924256da34c6076af 100644
--- a/core/tests/Drupal/KernelTests/Core/Validation/UniqueValuesConstraintValidatorTest.php
+++ b/core/tests/Drupal/KernelTests/Core/Validation/UniqueValuesConstraintValidatorTest.php
@@ -107,7 +107,7 @@ public function testValidation(): void {
   }
 
   /**
-   * Tests the UniqueField validation constraint validator for entity reference fields.
+   * Tests the UniqueField constraint validator for entity reference fields.
    *
    * Case 2. Try to create another entity with existing reference for unique field.
    *
@@ -183,7 +183,7 @@ public function testValidationReference(): void {
   }
 
   /**
-   * Tests the UniqueField validation constraint validator for existing value in the same entity.
+   * Tests the UniqueField constraint for existing value in the same entity.
    *
    * Case 3. Try to add existing value for unique field in the same entity.
    *
@@ -231,7 +231,7 @@ public function testValidationOwn(): void {
   }
 
   /**
-   * Tests the UniqueField validation constraint validator for multiple violations.
+   * Tests the UniqueField constraint for multiple violations.
    *
    * Case 4. Try to add multiple existing values for unique field in the same entity.
    *
@@ -292,7 +292,7 @@ public function testValidationMultiple(): void {
   }
 
   /**
-   * Tests the UniqueField validation constraint validator with regards to case-insensitivity.
+   * Tests the UniqueField constraint with regards to case-insensitivity.
    *
    * Case 5. Try to create another entity with existing value for unique field with different capitalization.
    *
diff --git a/core/tests/Drupal/Tests/Component/Utility/NumberTest.php b/core/tests/Drupal/Tests/Component/Utility/NumberTest.php
index 174829900042469dba713e8e3fa017d2d61fddf1..a1ab1392224516076950873630344a04fdf1d53a 100644
--- a/core/tests/Drupal/Tests/Component/Utility/NumberTest.php
+++ b/core/tests/Drupal/Tests/Component/Utility/NumberTest.php
@@ -95,7 +95,7 @@ public static function providerTestValidStep() {
   }
 
   /**
-   * Data provider for \Drupal\Tests\Component\Utility\NumberTest::testValidStepOffset().
+   * Data provider for testValidStepOffset().
    *
    * @see \Drupal\Tests\Component\Utility\NumberTest::testValidStepOffset()
    */