Make WordPress Core


Ignore:
Timestamp:
06/16/2021 09:41:44 AM (4 years ago)
Author:
SergeyBiryukov
Message:

Docs: Update syntax for some multi-line comments per the documentation standards.

Follow-up to [51003], [51149].

See #52628.

File:
1 edited

Legend:

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

    r51152 r51168  
    10991099        $this->theme_json = array_replace_recursive( $this->theme_json, $incoming_data );
    11001100
    1101         // The array_replace_recursive algorithm merges at the leaf level.
    1102         // For leaf values that are arrays it will use the numeric indexes for replacement.
    1103         // In those cases, we want to replace the existing with the incoming value, if it exists.
     1101        /*
     1102         * The array_replace_recursive() algorithm merges at the leaf level.
     1103         * For leaf values that are arrays it will use the numeric indexes for replacement.
     1104         * In those cases, we want to replace the existing with the incoming value, if it exists.
     1105         */
    11041106        $to_replace   = array();
    11051107        $to_replace[] = array( 'custom' );
Note: See TracChangeset for help on using the changeset viewer.