Make WordPress Core


Ignore:
Timestamp:
06/23/2020 11:09:04 AM (5 years ago)
Author:
SergeyBiryukov
Message:

Docs: Use sentence case for comments in tests/kses.php, per the documentation standards.

Follow-up to [48132].

See #49464, #49572.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/kses.php

    r48132 r48139  
    630630                false,
    631631            ),
    632             // using digit in attribute name should work
     632            // Using a digit in attribute name should work.
    633633            array(
    634634                'href="https://example.com/[shortcode attr=\'value\']" data-op3-timer-seconds="0"',
    635635                array( 'href="https://example.com/[shortcode attr=\'value\']" ', 'data-op3-timer-seconds="0"' ),
    636636            ),
    637             // using underscore in attribute name should work
     637            // Using an underscore in attribute name should work.
    638638            array(
    639639                'href="https://example.com/[shortcode attr=\'value\']" data-op_timer-seconds="0"',
    640640                array( 'href="https://example.com/[shortcode attr=\'value\']" ', 'data-op_timer-seconds="0"' ),
    641641            ),
    642             // using period in attribute name should work
     642            // Using a period in attribute name should work.
    643643            array(
    644644                'href="https://example.com/[shortcode attr=\'value\']" data-op.timer-seconds="0"',
    645645                array( 'href="https://example.com/[shortcode attr=\'value\']" ', 'data-op.timer-seconds="0"' ),
    646646            ),
    647             // using digit at a beginning of attribute name should return false
     647            // Using a digit at the beginning of attribute name should return false.
    648648            array(
    649649                'href="https://example.com/[shortcode attr=\'value\']" 3data-op-timer-seconds="0"',
Note: See TracChangeset for help on using the changeset viewer.