Make WordPress Core


Ignore:
Timestamp:
07/09/2023 09:46:24 PM (17 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].

Props costdev, audrasjb.
See #58459.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/default-constants.php

    r56042 r56180  
    9696    }
    9797
    98     // Add define( 'WP_DEBUG_DISPLAY', null ); to wp-config.php to use the globally configured setting
    99     // for 'display_errors' and not force errors to be displayed. Use false to force 'display_errors' off.
     98    /*
     99     * Add define( 'WP_DEBUG_DISPLAY', null ); to wp-config.php to use the globally configured setting
     100     * for 'display_errors' and not force errors to be displayed. Use false to force 'display_errors' off.
     101     */
    100102    if ( ! defined( 'WP_DEBUG_DISPLAY' ) ) {
    101103        define( 'WP_DEBUG_DISPLAY', true );
     
    111113    }
    112114
    113     // Add define( 'SCRIPT_DEBUG', true ); to wp-config.php to enable loading of non-minified,
    114     // non-concatenated scripts and stylesheets.
     115    /*
     116     * Add define( 'SCRIPT_DEBUG', true ); to wp-config.php to enable loading of non-minified,
     117     * non-concatenated scripts and stylesheets.
     118     */
    115119    if ( ! defined( 'SCRIPT_DEBUG' ) ) {
    116120        if ( ! empty( $wp_version ) ) {
Note: See TracChangeset for help on using the changeset viewer.