From adff905c9efe2c1ec46e5f06ecbb64a13500515b Mon Sep 17 00:00:00 2001 From: Alex Pott <alex.a.pott@googlemail.com> Date: Sat, 1 Jan 2022 16:19:49 +0000 Subject: [PATCH] Issue #3175287 by murilohp, quietone, SivaprasadC, ankithashetty, anmolgoyal74, sarvjeetsingh, xjm, longwave: Remove accidentally duplicated words in code comments --- core/lib/Drupal/Component/Gettext/PoStreamReader.php | 2 +- core/lib/Drupal/Core/Database/Query/SelectInterface.php | 2 +- core/lib/Drupal/Core/Database/database.api.php | 2 +- core/lib/Drupal/Core/Entity/EntityStorageBase.php | 2 +- .../FieldFormatter/EntityReferenceEntityFormatter.php | 2 +- .../Plugin/Field/FieldFormatter/LanguageFormatter.php | 2 +- .../Field/Plugin/Field/FieldFormatter/StringFormatter.php | 2 +- core/lib/Drupal/Core/Queue/QueueInterface.php | 2 +- core/lib/Drupal/Core/Render/theme.api.php | 2 +- core/lib/Drupal/Core/Routing/RouteProvider.php | 2 +- core/lib/Drupal/Core/Url.php | 2 +- core/modules/comment/src/CommentStorage.php | 5 ++--- .../comment/tests/src/Functional/CommentTestBase.php | 2 +- .../src/Form/ContentModerationConfigureForm.php | 2 +- .../src/Functional/ContentTranslationSyncImageTest.php | 2 +- .../field/tests/src/Functional/Views/FieldUITest.php | 2 +- core/modules/field/tests/src/Kernel/ShapeItemTest.php | 2 +- core/modules/field/tests/src/Kernel/TestItemTest.php | 2 +- .../file/src/Plugin/Field/FieldWidget/FileWidget.php | 2 +- .../filter/src/Plugin/migrate/process/FilterID.php | 7 +++---- core/modules/filter/src/Render/FilteredMarkup.php | 2 +- .../src/Plugin/Field/FieldFormatter/ImageFormatter.php | 2 +- .../tests/src/Functional/ImageFieldDefaultImagesTest.php | 3 +-- core/modules/jsonapi/src/JsonApiResource/Data.php | 2 +- .../Field/FieldFormatter/MediaThumbnailFormatter.php | 2 +- .../src/FunctionalJavascript/CKEditorIntegrationTest.php | 6 +++--- core/modules/media_library/media_library.module | 8 ++++---- core/modules/menu_ui/tests/src/Functional/MenuUiTest.php | 4 ++-- .../modules/node_access_test/node_access_test.module | 2 +- core/modules/system/src/Controller/DbUpdateController.php | 2 +- .../Validation/Constraint/EntityTestEntityLevel.php | 2 +- .../src/Controller/JSMessageTestController.php | 2 +- .../system/tests/src/Functional/Menu/LocalTasksTest.php | 2 +- core/modules/taxonomy/src/TermStorageInterface.php | 2 +- .../views/argument_default/ArgumentDefaultPluginBase.php | 4 ++-- .../argument_validator/ArgumentValidatorPluginBase.php | 6 +++--- .../views/src/Plugin/views/pager/PagerPluginBase.php | 4 ++-- .../views/src/Plugin/views/query/SqliteDateSql.php | 2 +- .../views/tests/src/Functional/Handler/FieldWebTest.php | 2 +- .../Plugin/views/Handler/FieldTest.php | 2 +- core/modules/views_ui/js/views-admin.es6.js | 2 +- core/modules/workspaces/workspaces.install | 4 ++-- .../Drupal/FunctionalTests/Image/ToolkitTestBase.php | 2 +- .../Installer/InstallerExistingConfigNoSystemSiteTest.php | 2 +- .../Installer/InstallerTranslationQueryTest.php | 4 ++-- core/tests/Drupal/Tests/BrowserHtmlDebugTrait.php | 2 +- core/tests/Drupal/Tests/Component/Utility/XssTest.php | 4 ++-- core/themes/claro/css/theme/media-library.css | 2 +- core/themes/claro/css/theme/media-library.pcss.css | 2 +- 49 files changed, 65 insertions(+), 68 deletions(-) diff --git a/core/lib/Drupal/Component/Gettext/PoStreamReader.php b/core/lib/Drupal/Component/Gettext/PoStreamReader.php index bbdd8e8ae6a2..9b4442606684 100644 --- a/core/lib/Drupal/Component/Gettext/PoStreamReader.php +++ b/core/lib/Drupal/Component/Gettext/PoStreamReader.php @@ -438,7 +438,7 @@ private function readLine() { return FALSE; } - // Remove 'msgstr' and trim away away whitespaces. + // Remove 'msgstr' and trim away whitespaces. $line = trim(substr($line, 6)); // Only the msgstr string is left, parse it. diff --git a/core/lib/Drupal/Core/Database/Query/SelectInterface.php b/core/lib/Drupal/Core/Database/Query/SelectInterface.php index 14edb16c7817..449d0b64d3c2 100644 --- a/core/lib/Drupal/Core/Database/Query/SelectInterface.php +++ b/core/lib/Drupal/Core/Database/Query/SelectInterface.php @@ -332,7 +332,7 @@ public function leftJoin($table, $alias = NULL, $condition = NULL, $arguments = * fields on which to join. * * @param $type - * The type of join. Typically one one of INNER, LEFT OUTER, and RIGHT OUTER. + * The type of join. Typically one of INNER, LEFT OUTER, and RIGHT OUTER. * @param $table * The table against which to join. May be a string or another SelectQuery * object. If a query object is passed, it will be used as a subselect. diff --git a/core/lib/Drupal/Core/Database/database.api.php b/core/lib/Drupal/Core/Database/database.api.php index 890f36bd9a5c..aed2448bdf2e 100644 --- a/core/lib/Drupal/Core/Database/database.api.php +++ b/core/lib/Drupal/Core/Database/database.api.php @@ -162,7 +162,7 @@ * remains in scope; when $transaction is destroyed, the transaction will be * committed. If your transaction is nested inside of another then Drupal will * track each transaction and only commit the outer-most transaction when the - * last transaction object goes out out of scope (when all relevant queries have + * last transaction object goes out of scope (when all relevant queries have * completed successfully). * * Example: diff --git a/core/lib/Drupal/Core/Entity/EntityStorageBase.php b/core/lib/Drupal/Core/Entity/EntityStorageBase.php index 6f970268090c..ce9e78c53a3e 100644 --- a/core/lib/Drupal/Core/Entity/EntityStorageBase.php +++ b/core/lib/Drupal/Core/Entity/EntityStorageBase.php @@ -83,7 +83,7 @@ abstract class EntityStorageBase extends EntityHandlerBase implements EntityStor protected $memoryCache; /** - * The memory cache cache tag. + * The memory cache tag. * * @var string */ diff --git a/core/lib/Drupal/Core/Field/Plugin/Field/FieldFormatter/EntityReferenceEntityFormatter.php b/core/lib/Drupal/Core/Field/Plugin/Field/FieldFormatter/EntityReferenceEntityFormatter.php index d337350983ef..8f95e07b538e 100644 --- a/core/lib/Drupal/Core/Field/Plugin/Field/FieldFormatter/EntityReferenceEntityFormatter.php +++ b/core/lib/Drupal/Core/Field/Plugin/Field/FieldFormatter/EntityReferenceEntityFormatter.php @@ -80,7 +80,7 @@ class EntityReferenceEntityFormatter extends EntityReferenceFormatterBase { * @param string $view_mode * The view mode. * @param array $third_party_settings - * Any third party settings settings. + * Any third party settings. * @param \Drupal\Core\Logger\LoggerChannelFactoryInterface $logger_factory * The logger factory. * @param \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager diff --git a/core/lib/Drupal/Core/Field/Plugin/Field/FieldFormatter/LanguageFormatter.php b/core/lib/Drupal/Core/Field/Plugin/Field/FieldFormatter/LanguageFormatter.php index 6f3c7cac44f1..6acabfa69602 100644 --- a/core/lib/Drupal/Core/Field/Plugin/Field/FieldFormatter/LanguageFormatter.php +++ b/core/lib/Drupal/Core/Field/Plugin/Field/FieldFormatter/LanguageFormatter.php @@ -46,7 +46,7 @@ class LanguageFormatter extends StringFormatter { * @param string $view_mode * The view mode. * @param array $third_party_settings - * Any third party settings settings. + * Any third party settings. * @param \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager * The entity type manager. * @param \Drupal\Core\Language\LanguageManagerInterface $language_manager diff --git a/core/lib/Drupal/Core/Field/Plugin/Field/FieldFormatter/StringFormatter.php b/core/lib/Drupal/Core/Field/Plugin/Field/FieldFormatter/StringFormatter.php index 96f18958405b..c46a97b22d33 100644 --- a/core/lib/Drupal/Core/Field/Plugin/Field/FieldFormatter/StringFormatter.php +++ b/core/lib/Drupal/Core/Field/Plugin/Field/FieldFormatter/StringFormatter.php @@ -51,7 +51,7 @@ class StringFormatter extends FormatterBase { * @param string $view_mode * The view mode. * @param array $third_party_settings - * Any third party settings settings. + * Any third party settings. * @param \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager * The entity type manager. */ diff --git a/core/lib/Drupal/Core/Queue/QueueInterface.php b/core/lib/Drupal/Core/Queue/QueueInterface.php index 83f3ef709841..449ad6a0dd05 100644 --- a/core/lib/Drupal/Core/Queue/QueueInterface.php +++ b/core/lib/Drupal/Core/Queue/QueueInterface.php @@ -62,7 +62,7 @@ public function numberOfItems(); * problem. * * If returned, the object will have at least the following properties: - * - data: the same as what what passed into createItem(). + * - data: the same as what passed into createItem(). * - item_id: the unique ID returned from createItem(). * - created: timestamp when the item was put into the queue. */ diff --git a/core/lib/Drupal/Core/Render/theme.api.php b/core/lib/Drupal/Core/Render/theme.api.php index fcf80e2923b7..128416b4ec4f 100644 --- a/core/lib/Drupal/Core/Render/theme.api.php +++ b/core/lib/Drupal/Core/Render/theme.api.php @@ -1132,7 +1132,7 @@ function hook_page_bottom(array &$page_bottom) { * - 'base_theme': A base theme is being checked for theme implementations. * - 'theme': The actual theme in use is being checked. * @param $theme - * The actual name of theme, module, etc. that is being being processed. + * The actual name of theme, module, etc. that is being processed. * @param $path * The directory path of the theme or module, so that it doesn't need to be * looked up. diff --git a/core/lib/Drupal/Core/Routing/RouteProvider.php b/core/lib/Drupal/Core/Routing/RouteProvider.php index beb302f72a30..7a3ba4168434 100644 --- a/core/lib/Drupal/Core/Routing/RouteProvider.php +++ b/core/lib/Drupal/Core/Routing/RouteProvider.php @@ -310,7 +310,7 @@ protected function getCandidateOutlines(array $parts) { $current .= $parts[$length - $j]; } else { - // Bit zero means means wildcard. + // Bit zero means wildcard. $current .= '%'; } // Unless we are at offset 0, add a slash. diff --git a/core/lib/Drupal/Core/Url.php b/core/lib/Drupal/Core/Url.php index 47ab4c4fcd90..4282d2b341d1 100644 --- a/core/lib/Drupal/Core/Url.php +++ b/core/lib/Drupal/Core/Url.php @@ -244,7 +244,7 @@ public static function fromUserInput($user_input, $options = []) { * you may use entity:{entity_type}/{entity_id} URIs. The internal: scheme * should be avoided except when processing actual user input that may or * may not correspond to a Drupal route. Normally use Url::fromRoute() for - * code linking to any any Drupal page. + * code linking to any Drupal page. * @param array $options * (optional) An associative array of additional URL options, with the * following elements: diff --git a/core/modules/comment/src/CommentStorage.php b/core/modules/comment/src/CommentStorage.php index 1b2c1b843ac9..6bf70252189c 100644 --- a/core/modules/comment/src/CommentStorage.php +++ b/core/modules/comment/src/CommentStorage.php @@ -319,9 +319,8 @@ public function loadThread(EntityInterface $entity, $field_name, $mode, $comment $query->orderBy('c.cid', 'ASC'); } else { - // See comment above. Analysis reveals that this doesn't cost too - // much. It scales much much better than having the whole comment - // structure. + // See comment above. Analysis reveals that this doesn't cost too much. It + // scales much better than having the whole comment structure. $query->addExpression('SUBSTRING([c].[thread], 1, (LENGTH([c].[thread]) - 1))', 'torder'); $query->orderBy('torder', 'ASC'); } diff --git a/core/modules/comment/tests/src/Functional/CommentTestBase.php b/core/modules/comment/tests/src/Functional/CommentTestBase.php index 138021e87666..6f3a74d90c64 100644 --- a/core/modules/comment/tests/src/Functional/CommentTestBase.php +++ b/core/modules/comment/tests/src/Functional/CommentTestBase.php @@ -391,7 +391,7 @@ public function getUnapprovedComment($subject) { } /** - * Creates a comment comment type (bundle). + * Creates a comment type (bundle). * * @param string $label * The comment type label. diff --git a/core/modules/content_moderation/src/Form/ContentModerationConfigureForm.php b/core/modules/content_moderation/src/Form/ContentModerationConfigureForm.php index 301932f46c39..c2c85892ade9 100644 --- a/core/modules/content_moderation/src/Form/ContentModerationConfigureForm.php +++ b/core/modules/content_moderation/src/Form/ContentModerationConfigureForm.php @@ -35,7 +35,7 @@ class ContentModerationConfigureForm extends WorkflowTypeConfigureFormBase imple protected $moderationInfo; /** - * The entity type type bundle info service. + * The entity type bundle info service. * * @var \Drupal\Core\Entity\EntityTypeBundleInfoInterface */ diff --git a/core/modules/content_translation/tests/src/Functional/ContentTranslationSyncImageTest.php b/core/modules/content_translation/tests/src/Functional/ContentTranslationSyncImageTest.php index 4ff54ff0430d..54da60b9e9de 100644 --- a/core/modules/content_translation/tests/src/Functional/ContentTranslationSyncImageTest.php +++ b/core/modules/content_translation/tests/src/Functional/ContentTranslationSyncImageTest.php @@ -97,7 +97,7 @@ protected function getEditorPermissions() { } /** - * Tests image field field synchronization. + * Tests image field synchronization. */ public function testImageFieldSync() { // Check that the alt and title fields are enabled for the image field. diff --git a/core/modules/field/tests/src/Functional/Views/FieldUITest.php b/core/modules/field/tests/src/Functional/Views/FieldUITest.php index 07ab03d177a6..cf4cb50822d1 100644 --- a/core/modules/field/tests/src/Functional/Views/FieldUITest.php +++ b/core/modules/field/tests/src/Functional/Views/FieldUITest.php @@ -7,7 +7,7 @@ use Drupal\views\Views; /** - * Tests the UI of the field field handler. + * Tests the UI of the field handler. * * @group field * @see \Drupal\field\Plugin\views\field\Field diff --git a/core/modules/field/tests/src/Kernel/ShapeItemTest.php b/core/modules/field/tests/src/Kernel/ShapeItemTest.php index cab3873bddf2..8b3259820684 100644 --- a/core/modules/field/tests/src/Kernel/ShapeItemTest.php +++ b/core/modules/field/tests/src/Kernel/ShapeItemTest.php @@ -46,7 +46,7 @@ protected function setUp(): void { } /** - * Tests using entity fields of the field field type. + * Tests using entity fields of the shape field type. */ public function testShapeItem() { // Verify entity creation. diff --git a/core/modules/field/tests/src/Kernel/TestItemTest.php b/core/modules/field/tests/src/Kernel/TestItemTest.php index 5ca31551a2ae..7cbe6ea82cab 100644 --- a/core/modules/field/tests/src/Kernel/TestItemTest.php +++ b/core/modules/field/tests/src/Kernel/TestItemTest.php @@ -47,7 +47,7 @@ protected function setUp(): void { } /** - * Tests using entity fields of the field field type. + * Tests using entity fields of the test field type. */ public function testTestItem() { // Verify entity creation. diff --git a/core/modules/file/src/Plugin/Field/FieldWidget/FileWidget.php b/core/modules/file/src/Plugin/Field/FieldWidget/FileWidget.php index 889279788871..bf6ceb061255 100644 --- a/core/modules/file/src/Plugin/Field/FieldWidget/FileWidget.php +++ b/core/modules/file/src/Plugin/Field/FieldWidget/FileWidget.php @@ -503,7 +503,7 @@ public static function processMultiple($element, FormStateInterface $form_state, } /** - * Retrieves the file description from a field field element. + * Retrieves the file description from a field element. * * This helper static method is used by processMultiple() method. * diff --git a/core/modules/filter/src/Plugin/migrate/process/FilterID.php b/core/modules/filter/src/Plugin/migrate/process/FilterID.php index d61661df6caa..14f88408a1c4 100644 --- a/core/modules/filter/src/Plugin/migrate/process/FilterID.php +++ b/core/modules/filter/src/Plugin/migrate/process/FilterID.php @@ -15,10 +15,9 @@ // cspell:ignore abbrfilter adsense autofloat biblio cincopa codefilter // cspell:ignore commonmark deepzoom emogrifier emptyparagraphkiller forena -// cspell:ignore gotwo htmlpurifier htmltidy intlinks intlinks lazyloader -// cspell:ignore linktitle multicolumn multilink mytube openlayers opengraph -// cspell:ignore sanitizable shortcode shortcode spamspan typogrify wordfilter -// cspell:ignore xbbcode +// cspell:ignore gotwo htmlpurifier htmltidy intlinks lazyloader linktitle +// cspell:ignore multicolumn multilink mytube openlayers opengraph sanitizable +// cspell:ignore shortcode spamspan typogrify wordfilter xbbcode /** * @MigrateProcessPlugin( diff --git a/core/modules/filter/src/Render/FilteredMarkup.php b/core/modules/filter/src/Render/FilteredMarkup.php index bf2498350460..ab8f7168f004 100644 --- a/core/modules/filter/src/Render/FilteredMarkup.php +++ b/core/modules/filter/src/Render/FilteredMarkup.php @@ -14,7 +14,7 @@ * * @internal * This object is marked as internal because it should only be used in the - * Filter module on strings that have already been been filtered and sanitized + * Filter module on strings that have already been filtered and sanitized * in \Drupal\filter\Plugin\FilterInterface. * * @see \Drupal\Core\Render\Markup diff --git a/core/modules/image/src/Plugin/Field/FieldFormatter/ImageFormatter.php b/core/modules/image/src/Plugin/Field/FieldFormatter/ImageFormatter.php index 515dd92553c6..aed0e7169d49 100644 --- a/core/modules/image/src/Plugin/Field/FieldFormatter/ImageFormatter.php +++ b/core/modules/image/src/Plugin/Field/FieldFormatter/ImageFormatter.php @@ -67,7 +67,7 @@ class ImageFormatter extends ImageFormatterBase { * @param string $view_mode * The view mode. * @param array $third_party_settings - * Any third party settings settings. + * Any third party settings. * @param \Drupal\Core\Session\AccountInterface $current_user * The current user. * @param \Drupal\Core\Entity\EntityStorageInterface $image_style_storage diff --git a/core/modules/image/tests/src/Functional/ImageFieldDefaultImagesTest.php b/core/modules/image/tests/src/Functional/ImageFieldDefaultImagesTest.php index 3acf4fa263ee..a657d2cacba5 100644 --- a/core/modules/image/tests/src/Functional/ImageFieldDefaultImagesTest.php +++ b/core/modules/image/tests/src/Functional/ImageFieldDefaultImagesTest.php @@ -251,8 +251,7 @@ public function testDefaultImages() { $field->setSetting('default_image', $default_image_settings); $field->save(); - // Confirm the new field field default is used on the article field - // admin form. + // Confirm the new field default is used on the article field admin form. $this->drupalGet("admin/structure/types/manage/article/fields/$field_id"); $this->assertSession()->hiddenFieldValueEquals('settings[default_image][uuid][fids]', $default_images['field_private']->id()); } diff --git a/core/modules/jsonapi/src/JsonApiResource/Data.php b/core/modules/jsonapi/src/JsonApiResource/Data.php index 0e4006206726..113e3bf559d3 100644 --- a/core/modules/jsonapi/src/JsonApiResource/Data.php +++ b/core/modules/jsonapi/src/JsonApiResource/Data.php @@ -146,7 +146,7 @@ public function getCardinality() { * Returns a new Data object containing the entities of $this and $other. * * @param \Drupal\jsonapi\JsonApiResource\Data $a - * A Data object object to be merged. + * A Data object to be merged. * @param \Drupal\jsonapi\JsonApiResource\Data $b * A Data object to be merged. * diff --git a/core/modules/media/src/Plugin/Field/FieldFormatter/MediaThumbnailFormatter.php b/core/modules/media/src/Plugin/Field/FieldFormatter/MediaThumbnailFormatter.php index 238545678ac7..6dcd7cc59edd 100644 --- a/core/modules/media/src/Plugin/Field/FieldFormatter/MediaThumbnailFormatter.php +++ b/core/modules/media/src/Plugin/Field/FieldFormatter/MediaThumbnailFormatter.php @@ -50,7 +50,7 @@ class MediaThumbnailFormatter extends ImageFormatter { * @param string $view_mode * The view mode. * @param array $third_party_settings - * Any third party settings settings. + * Any third party settings. * @param \Drupal\Core\Session\AccountInterface $current_user * The current user. * @param \Drupal\image\ImageStyleStorageInterface $image_style_storage diff --git a/core/modules/media/tests/src/FunctionalJavascript/CKEditorIntegrationTest.php b/core/modules/media/tests/src/FunctionalJavascript/CKEditorIntegrationTest.php index 5785a13a680d..d4e23b3e7385 100644 --- a/core/modules/media/tests/src/FunctionalJavascript/CKEditorIntegrationTest.php +++ b/core/modules/media/tests/src/FunctionalJavascript/CKEditorIntegrationTest.php @@ -713,9 +713,9 @@ public function testAlt() { $assert_session->fieldValueEquals('attributes[alt]', $cobra_commander_bio); // Test that setting alt value to two double quotes will signal to the - // MediaEmbed filter to unset the attribute on the media image field. - // We intentionally add a space space after the two double quotes to test - // the string is trimmed to two quotes. + // MediaEmbed filter to unset the attribute on the media image field. We + // intentionally add a space after the two double quotes to test the string + // is trimmed to two quotes. $page->fillField('attributes[alt]', '"" '); $this->submitDialog(); $this->getSession()->switchToIFrame('ckeditor'); diff --git a/core/modules/media_library/media_library.module b/core/modules/media_library/media_library.module index 7e6539a51543..24a534ce809e 100644 --- a/core/modules/media_library/media_library.module +++ b/core/modules/media_library/media_library.module @@ -479,8 +479,8 @@ function _media_library_configure_view_display(MediaTypeInterface $type) { * Implements hook_form_FORM_ID_alter(). */ function media_library_form_filter_format_edit_form_alter(array &$form, FormStateInterface $form_state, $form_id) { - // Add an additional validate callback so so we can ensure the media_embed - // filter is enabled when the DrupalMediaLibrary button is enabled. + // Add an additional validate callback so we can ensure the media_embed filter + // is enabled when the DrupalMediaLibrary button is enabled. $form['#validate'][] = 'media_library_filter_format_edit_form_validate'; } @@ -488,8 +488,8 @@ function media_library_form_filter_format_edit_form_alter(array &$form, FormStat * Implements hook_form_FORM_ID_alter(). */ function media_library_form_filter_format_add_form_alter(array &$form, FormStateInterface $form_state, $form_id) { - // Add an additional validate callback so so we can ensure the media_embed - // filter is enabled when the DrupalMediaLibrary button is enabled. + // Add an additional validate callback so we can ensure the media_embed filter + // is enabled when the DrupalMediaLibrary button is enabled. $form['#validate'][] = 'media_library_filter_format_edit_form_validate'; } diff --git a/core/modules/menu_ui/tests/src/Functional/MenuUiTest.php b/core/modules/menu_ui/tests/src/Functional/MenuUiTest.php index d565e5320367..497f7f9a8d2f 100644 --- a/core/modules/menu_ui/tests/src/Functional/MenuUiTest.php +++ b/core/modules/menu_ui/tests/src/Functional/MenuUiTest.php @@ -801,7 +801,7 @@ public function verifyMenuLink(MenuLinkContent $item, $item_node, MenuLinkConten $title = $parent->getTitle(); $this->assertSession()->linkExists($title, 0, 'Parent menu link was displayed'); - // Verify menu link link. + // Verify menu link. $this->clickLink($title); $title = $parent_node->label(); $this->assertSession()->titleEquals("$title | Drupal"); @@ -811,7 +811,7 @@ public function verifyMenuLink(MenuLinkContent $item, $item_node, MenuLinkConten $title = $item->getTitle(); $this->assertSession()->linkExists($title, 0, 'Menu link was displayed'); - // Verify menu link link. + // Verify menu link. $this->clickLink($title); $title = $item_node->label(); $this->assertSession()->titleEquals("$title | Drupal"); diff --git a/core/modules/node/tests/modules/node_access_test/node_access_test.module b/core/modules/node/tests/modules/node_access_test/node_access_test.module index 36219a13394f..de51ddf57edc 100644 --- a/core/modules/node/tests/modules/node_access_test/node_access_test.module +++ b/core/modules/node/tests/modules/node_access_test/node_access_test.module @@ -99,7 +99,7 @@ function node_access_test_node_access_records(NodeInterface $node) { 'priority' => 0, ]; // For the author realm, the group ID is equivalent to a user ID, which - // means there are many many groups of just 1 user. + // means there are many groups of just 1 user. $grants[] = [ 'realm' => 'node_access_test_author', 'gid' => $node->getOwnerId(), diff --git a/core/modules/system/src/Controller/DbUpdateController.php b/core/modules/system/src/Controller/DbUpdateController.php index 417fa6a5f560..f7dc4a355541 100644 --- a/core/modules/system/src/Controller/DbUpdateController.php +++ b/core/modules/system/src/Controller/DbUpdateController.php @@ -138,7 +138,7 @@ public static function create(ContainerInterface $container) { * The current request object. * * @return \Symfony\Component\HttpFoundation\Response - * A response object object. + * A response object. */ public function handle($op, Request $request) { require_once $this->root . '/core/includes/install.inc'; diff --git a/core/modules/system/tests/modules/entity_test/src/Plugin/Validation/Constraint/EntityTestEntityLevel.php b/core/modules/system/tests/modules/entity_test/src/Plugin/Validation/Constraint/EntityTestEntityLevel.php index 247b8b670f54..54b96f7b8d84 100644 --- a/core/modules/system/tests/modules/entity_test/src/Plugin/Validation/Constraint/EntityTestEntityLevel.php +++ b/core/modules/system/tests/modules/entity_test/src/Plugin/Validation/Constraint/EntityTestEntityLevel.php @@ -5,7 +5,7 @@ use Symfony\Component\Validator\Constraint; /** - * Constraint on entity entity level. + * Constraint on entity level. * * @Constraint( * id = "EntityTestEntityLevel", diff --git a/core/modules/system/tests/modules/js_message_test/src/Controller/JSMessageTestController.php b/core/modules/system/tests/modules/js_message_test/src/Controller/JSMessageTestController.php index b637833771aa..c6cd8b4670f6 100644 --- a/core/modules/system/tests/modules/js_message_test/src/Controller/JSMessageTestController.php +++ b/core/modules/system/tests/modules/js_message_test/src/Controller/JSMessageTestController.php @@ -21,7 +21,7 @@ public static function getTypes() { * Gets the test messages selectors. * * @return string[] - * The test test messages selectors. + * The test messages selectors. * * @see core/modules/system/tests/themes/test_messages/templates/status-messages.html.twig */ diff --git a/core/modules/system/tests/src/Functional/Menu/LocalTasksTest.php b/core/modules/system/tests/src/Functional/Menu/LocalTasksTest.php index c9ddfb282402..5375e2405097 100644 --- a/core/modules/system/tests/src/Functional/Menu/LocalTasksTest.php +++ b/core/modules/system/tests/src/Functional/Menu/LocalTasksTest.php @@ -177,7 +177,7 @@ public function testPluginLocalTask() { $this->assertEquals('menu_test', $definitions['menu_test.local_task_test_tasks_settings_sub2']['provider']); $this->assertEquals('menu_test', $definitions['menu_test.local_task_test_tasks_settings_sub3']['provider']); - // Test that we we correctly apply the active class to tabs where one of the + // Test that we correctly apply the active class to tabs where one of the // request attributes is upcast to an entity object. $entity = \Drupal::entityTypeManager()->getStorage('entity_test')->create(['bundle' => 'test']); $entity->save(); diff --git a/core/modules/taxonomy/src/TermStorageInterface.php b/core/modules/taxonomy/src/TermStorageInterface.php index 4271805ac574..610ede6fbe64 100644 --- a/core/modules/taxonomy/src/TermStorageInterface.php +++ b/core/modules/taxonomy/src/TermStorageInterface.php @@ -29,7 +29,7 @@ public function deleteTermHierarchy($tids); * Term entity that needs to be added to term hierarchy information. * * @todo remove this method Drupal 9.0.x. Now the parent references are - * automatically updates when when a taxonomy term is added/updated. + * automatically updates when a taxonomy term is added/updated. * https://www.drupal.org/node/2785693 */ public function updateTermHierarchy(EntityInterface $term); diff --git a/core/modules/views/src/Plugin/views/argument_default/ArgumentDefaultPluginBase.php b/core/modules/views/src/Plugin/views/argument_default/ArgumentDefaultPluginBase.php index a3336458d8da..4f91e6a160af 100644 --- a/core/modules/views/src/Plugin/views/argument_default/ArgumentDefaultPluginBase.php +++ b/core/modules/views/src/Plugin/views/argument_default/ArgumentDefaultPluginBase.php @@ -67,12 +67,12 @@ protected function defineOptions() { public function buildOptionsForm(&$form, FormStateInterface $form_state) {} /** - * Provide the default form form for validating options. + * Provide the default form for validating options. */ public function validateOptionsForm(&$form, FormStateInterface $form_state) {} /** - * Provide the default form form for submitting options. + * Provide the default form for submitting options. */ public function submitOptionsForm(&$form, FormStateInterface $form_state, &$options = []) {} diff --git a/core/modules/views/src/Plugin/views/argument_validator/ArgumentValidatorPluginBase.php b/core/modules/views/src/Plugin/views/argument_validator/ArgumentValidatorPluginBase.php index 6e797b49b1be..c89479f9dc69 100644 --- a/core/modules/views/src/Plugin/views/argument_validator/ArgumentValidatorPluginBase.php +++ b/core/modules/views/src/Plugin/views/argument_validator/ArgumentValidatorPluginBase.php @@ -14,9 +14,9 @@ * Views argument validator plugins validate arguments (contextual filters) on * views. They can ensure arguments are valid, and even do transformations on * the arguments. They can also provide replacement patterns for the view title. - * For example, the 'content' validator verifies verifies that the argument - * value corresponds to a node, loads that node, and provides the node title - * as a replacement pattern for the view title. + * For example, the 'content' validator verifies that the argument value + * corresponds to a node, loads that node, and provides the node title as a + * replacement pattern for the view title. * * Argument validator plugins extend * \Drupal\views\Plugin\views\argument_validator\ArgumentValidatorPluginBase. diff --git a/core/modules/views/src/Plugin/views/pager/PagerPluginBase.php b/core/modules/views/src/Plugin/views/pager/PagerPluginBase.php index 5227a6ac4306..d02f67034417 100644 --- a/core/modules/views/src/Plugin/views/pager/PagerPluginBase.php +++ b/core/modules/views/src/Plugin/views/pager/PagerPluginBase.php @@ -112,12 +112,12 @@ public function getPagerId() { } /** - * Provide the default form form for validating options. + * Provide the default form for validating options. */ public function validateOptionsForm(&$form, FormStateInterface $form_state) {} /** - * Provide the default form form for submitting options. + * Provide the default form for submitting options. */ public function submitOptionsForm(&$form, FormStateInterface $form_state) {} diff --git a/core/modules/views/src/Plugin/views/query/SqliteDateSql.php b/core/modules/views/src/Plugin/views/query/SqliteDateSql.php index 5ee488689c03..db7fc4a6cc09 100644 --- a/core/modules/views/src/Plugin/views/query/SqliteDateSql.php +++ b/core/modules/views/src/Plugin/views/query/SqliteDateSql.php @@ -49,7 +49,7 @@ class SqliteDateSql implements DateSqlInterface { 'j' => '%d', 'W' => '%W', 'H' => '%H', - // No format for 12 hour hour with leading zeros. + // No format for 12 hour with leading zeros. 'h' => '%H', 'i' => '%M', 's' => '%S', diff --git a/core/modules/views/tests/src/Functional/Handler/FieldWebTest.php b/core/modules/views/tests/src/Functional/Handler/FieldWebTest.php index 3baa6f3943f0..1526897664f2 100644 --- a/core/modules/views/tests/src/Functional/Handler/FieldWebTest.php +++ b/core/modules/views/tests/src/Functional/Handler/FieldWebTest.php @@ -473,7 +473,7 @@ public function testFieldClasses() { // Tests the element classes/element. - // Set some common element element types and see whether they appear with and without a custom class set. + // Set some common element types and see whether they appear with and without a custom class set. foreach (['h1', 'span', 'p', 'div'] as $element_type) { $id_field->options['element_type'] = $element_type; diff --git a/core/modules/views/tests/src/FunctionalJavascript/Plugin/views/Handler/FieldTest.php b/core/modules/views/tests/src/FunctionalJavascript/Plugin/views/Handler/FieldTest.php index 38b9687cdf50..d5744dbdc2a4 100644 --- a/core/modules/views/tests/src/FunctionalJavascript/Plugin/views/Handler/FieldTest.php +++ b/core/modules/views/tests/src/FunctionalJavascript/Plugin/views/Handler/FieldTest.php @@ -9,7 +9,7 @@ use Drupal\views\Tests\ViewTestData; /** - * Tests the field field handler UI. + * Tests the field handler UI. * * @group views */ diff --git a/core/modules/views_ui/js/views-admin.es6.js b/core/modules/views_ui/js/views-admin.es6.js index 3af166d7c7a2..f91f29e8d9ba 100644 --- a/core/modules/views_ui/js/views-admin.es6.js +++ b/core/modules/views_ui/js/views-admin.es6.js @@ -266,7 +266,7 @@ $form = $context.find('form[id^="views-ui-add-handler-form"]'); } if (once('views-ui-add-handler-form', $form).length) { - // If we we have an unprocessed views-ui-add-handler-form, let's + // If we have an unprocessed views-ui-add-handler-form, let's // instantiate. new Drupal.viewsUi.AddItemForm($form); } diff --git a/core/modules/workspaces/workspaces.install b/core/modules/workspaces/workspaces.install index 31bc8e88959c..2c37233f92f8 100644 --- a/core/modules/workspaces/workspaces.install +++ b/core/modules/workspaces/workspaces.install @@ -50,8 +50,8 @@ function workspaces_module_preinstall($module) { * Implements hook_install(). */ function workspaces_install() { - // Set the owner of these default workspaces to be first user which which has - // the 'administrator' role. This way we avoid hard coding user ID 1 for sites + // Set the owner of these default workspaces to be first user which has the + // 'administrator' role. This way we avoid hard coding user ID 1 for sites // that prefer to not give it any special meaning. $admin_roles = \Drupal::entityTypeManager()->getStorage('user_role')->getQuery() ->condition('is_admin', TRUE) diff --git a/core/tests/Drupal/FunctionalTests/Image/ToolkitTestBase.php b/core/tests/Drupal/FunctionalTests/Image/ToolkitTestBase.php index 85a7e2a45d45..9e9a233c8046 100644 --- a/core/tests/Drupal/FunctionalTests/Image/ToolkitTestBase.php +++ b/core/tests/Drupal/FunctionalTests/Image/ToolkitTestBase.php @@ -83,7 +83,7 @@ protected function getImage() { /** * Assert that all of the specified image toolkit operations were called - * exactly once once, other values result in failure. + * exactly once, other values result in failure. * * @param $expected * Array with string containing with the operation name, e.g. 'load', diff --git a/core/tests/Drupal/FunctionalTests/Installer/InstallerExistingConfigNoSystemSiteTest.php b/core/tests/Drupal/FunctionalTests/Installer/InstallerExistingConfigNoSystemSiteTest.php index 96499dc3364e..4796bf23f32b 100644 --- a/core/tests/Drupal/FunctionalTests/Installer/InstallerExistingConfigNoSystemSiteTest.php +++ b/core/tests/Drupal/FunctionalTests/Installer/InstallerExistingConfigNoSystemSiteTest.php @@ -22,7 +22,7 @@ protected function prepareEnvironment() { * {@inheritdoc} */ public function setUpSite() { - // There are are errors. Therefore, there is nothing to do here. + // There are errors. Therefore, there is nothing to do here. } /** diff --git a/core/tests/Drupal/FunctionalTests/Installer/InstallerTranslationQueryTest.php b/core/tests/Drupal/FunctionalTests/Installer/InstallerTranslationQueryTest.php index be24236edeeb..fe9da0950259 100644 --- a/core/tests/Drupal/FunctionalTests/Installer/InstallerTranslationQueryTest.php +++ b/core/tests/Drupal/FunctionalTests/Installer/InstallerTranslationQueryTest.php @@ -49,8 +49,8 @@ protected function visitInstaller() { * {@inheritdoc} */ protected function setUpLanguage() { - // The language was was preset by passing a query parameter in the URL, so - // no explicit language selection is necessary. + // The language was preset by passing a query parameter in the URL, so no + // explicit language selection is necessary. } /** diff --git a/core/tests/Drupal/Tests/BrowserHtmlDebugTrait.php b/core/tests/Drupal/Tests/BrowserHtmlDebugTrait.php index e0b85ef5460f..71646b4dfc44 100644 --- a/core/tests/Drupal/Tests/BrowserHtmlDebugTrait.php +++ b/core/tests/Drupal/Tests/BrowserHtmlDebugTrait.php @@ -41,7 +41,7 @@ trait BrowserHtmlDebugTrait { protected $htmlOutputCounter = 1; /** - * HTML output output enabled. + * HTML output enabled. * * @var bool */ diff --git a/core/tests/Drupal/Tests/Component/Utility/XssTest.php b/core/tests/Drupal/Tests/Component/Utility/XssTest.php index 9ecffc195eca..d8ddc227cae0 100644 --- a/core/tests/Drupal/Tests/Component/Utility/XssTest.php +++ b/core/tests/Drupal/Tests/Component/Utility/XssTest.php @@ -86,7 +86,7 @@ public function testFilterXssNormalized($value, $expected, $message, array $allo * - The value to filter. * - The value to expect after filtering. * - The assertion message. - * - (optional) The allowed HTML HTML tags array that should be passed to + * - (optional) The allowed HTML tags array that should be passed to * \Drupal\Component\Utility\Xss::filter(). */ public function providerTestFilterXssNormalized() { @@ -153,7 +153,7 @@ public function testFilterXssNotNormalized($value, $expected, $message, array $a * - The value to filter. * - The value to expect that's missing after filtering. * - The assertion message. - * - (optional) The allowed HTML HTML tags array that should be passed to + * - (optional) The allowed HTML tags array that should be passed to * \Drupal\Component\Utility\Xss::filter(). */ public function providerTestFilterXssNotNormalized() { diff --git a/core/themes/claro/css/theme/media-library.css b/core/themes/claro/css/theme/media-library.css index 8c746aba286b..af3d30211261 100644 --- a/core/themes/claro/css/theme/media-library.css +++ b/core/themes/claro/css/theme/media-library.css @@ -255,7 +255,7 @@ margin: 0.5rem 0 0; } -/* Align remove buttons with with Save button and compensate for IE scrollbar and focus padding. */ +/* Align remove buttons with Save button and compensate for IE scrollbar and focus padding. */ @media all and (-ms-high-contrast: active), (-ms-high-contrast: none) { .ui-dialog > .ui-dialog-content { diff --git a/core/themes/claro/css/theme/media-library.pcss.css b/core/themes/claro/css/theme/media-library.pcss.css index 47ec4bf15985..75a5aef47222 100644 --- a/core/themes/claro/css/theme/media-library.pcss.css +++ b/core/themes/claro/css/theme/media-library.pcss.css @@ -233,7 +233,7 @@ margin: 8px 0 0; } -/* Align remove buttons with with Save button and compensate for IE scrollbar and focus padding. */ +/* Align remove buttons with Save button and compensate for IE scrollbar and focus padding. */ @media all and (-ms-high-contrast: active), (-ms-high-contrast: none) { .ui-dialog > .ui-dialog-content { padding-right: calc(var(--space-s) - calc(var(--focus-border-size) + var(--focus-border-offset-size) + 2px)); -- GitLab