Make WordPress Core


Ignore:
Timestamp:
07/09/2023 08:15:03 PM (23 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].

Props costdev, audrasjb.
See #58459.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/class-wp-editor.php

    r56031 r56177  
    459459                    $key = array_search( 'spellchecker', $plugins, true );
    460460                    if ( false !== $key ) {
    461                         // Remove 'spellchecker' from the internal plugins if added with 'tiny_mce_plugins' filter to prevent errors.
    462                         // It can be added with 'mce_external_plugins'.
     461                        /*
     462                         * Remove 'spellchecker' from the internal plugins if added with 'tiny_mce_plugins' filter to prevent errors.
     463                         * It can be added with 'mce_external_plugins'.
     464                         */
    463465                        unset( $plugins[ $key ] );
    464466                    }
Note: See TracChangeset for help on using the changeset viewer.