Make WordPress Core


Ignore:
Timestamp:
08/05/2021 01:10:05 PM (3 years ago)
Author:
SergeyBiryukov
Message:

Coding Standards: Fix incorrect alignment in two comment blocks.

Tabs should only be used for indentation and not for mid-line alignment.

Props jrf.
See #53359.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/script-loader.php

    r51540 r51551  
    221221    $suffix = wp_scripts_get_suffix();
    222222
    223     // Expects multidimensional array like:
    224     //  'a11y.js' => array('dependencies' => array(...), 'version' => '...'),
    225     //  'annotations.js' => array('dependencies' => array(...), 'version' => '...'),
    226     //  'api-fetch.js' => array(...
     223    /*
     224     * Expects multidimensional array like:
     225     *
     226     *     'a11y.js' => array('dependencies' => array(...), 'version' => '...'),
     227     *     'annotations.js' => array('dependencies' => array(...), 'version' => '...'),
     228     *     'api-fetch.js' => array(...
     229     */
    227230    $assets = include ABSPATH . WPINC . '/assets/script-loader-packages.php';
    228231
Note: See TracChangeset for help on using the changeset viewer.