Make WordPress Core


Ignore:
Timestamp:
07/09/2023 07:54:42 PM (14 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].

Props costdev, audrasjb.
See #58459.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/user-edit.php

    r56150 r56175  
    922922        var languageSelect = $( '#locale' );
    923923        $( 'form' ).on( 'submit', function() {
    924             // Don't show a spinner for English and installed languages,
    925             // as there is nothing to download.
     924            /*
     925             * Don't show a spinner for English and installed languages,
     926             * as there is nothing to download.
     927             */
    926928            if ( ! languageSelect.find( 'option:selected' ).data( 'installed' ) ) {
    927929                $( '#submit', this ).after( '<span class="spinner language-install-spinner is-active" />' );
Note: See TracChangeset for help on using the changeset viewer.