diff --git a/core/lib/Drupal/Core/Database/Driver/pgsql/Schema.php b/core/lib/Drupal/Core/Database/Driver/pgsql/Schema.php
index 051d279e65f31d022519c0e6d30c86ec5f39b95b..c033568ec5f79765b65b2f6cc5318011c9939df2 100644
--- a/core/lib/Drupal/Core/Database/Driver/pgsql/Schema.php
+++ b/core/lib/Drupal/Core/Database/Driver/pgsql/Schema.php
@@ -45,9 +45,10 @@ class Schema extends DatabaseSchema {
   /**
    * Make sure to limit identifiers according to PostgreSQL compiled in length.
    *
-   * PostgreSQL allows in standard configuration no longer identifiers than 63 chars for
-   * table/relation names, indexes, primary keys, and constraints. So we map all to long
-   * identifiers to drupal_base64hash_tag, where tag is one of:
+   * PostgreSQL allows in standard configuration no longer identifiers than 63
+   * chars for table/relation names, indexes, primary keys, and constraints. So
+   * we map all identifiers that are too long to drupal_base64hash_tag, where
+   * tag is one of:
    *   - idx for indexes
    *   - key for constraints
    *   - pkey for primary keys