Make WordPress Core


Ignore:
Timestamp:
07/10/2023 11:17:05 PM (15 months ago)
Author:
audrasjb
Message:

Docs: Replace multiple single line comments with multi-line comments.

This changeset updates various comments as per WordPress PHP Inline Documentation Standards.
See https://developer.wordpress.org/coding-standards/inline-documentation-standards/php/#5-inline-comments.

Follow-up to [56174], [56175], [56176], [56177], [56178], [56179], [56180], [56191], [56192], [56193], [56194].

Props costdev, audrasjb.
See #58459.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php

    r55200 r56195  
    262262     */
    263263    protected function do_permissions_check() {
    264         // Verify if the current user has edit_theme_options capability.
    265         // This capability is required to access the widgets screen.
     264        /*
     265         * Verify if the current user has edit_theme_options capability.
     266         * This capability is required to access the widgets screen.
     267         */
    266268        if ( ! current_user_can( 'edit_theme_options' ) ) {
    267269            return new WP_Error(
Note: See TracChangeset for help on using the changeset viewer.