Make WordPress Core


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

Props costdev, audrasjb.
See #58459.

File:
1 edited

Legend:

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

    r55865 r56178  
    202202        }
    203203
    204         // If no path is found for the given locale and a custom path has been set
    205         // using load_plugin_textdomain/load_theme_textdomain, use that one.
     204        /*
     205         * If no path is found for the given locale and a custom path has been set
     206         * using load_plugin_textdomain/load_theme_textdomain, use that one.
     207         */
    206208        if ( 'en_US' !== $locale && isset( $this->custom_paths[ $domain ] ) ) {
    207209            $fallback_location = rtrim( $this->custom_paths[ $domain ], '/' ) . '/';
Note: See TracChangeset for help on using the changeset viewer.