Make WordPress Core


Ignore:
Timestamp:
11/11/2019 08:30:16 PM (5 years ago)
Author:
SergeyBiryukov
Message:

Tests: Fix a typo in an inline comment introduced in [46568].

Reviewed by whyisjake, SergeyBiryukov.
Props david.binda.
Merges [46707] to the 5.3 branch.
Fixes #48564. See #48312.

Location:
branches/5.3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/5.3

  • branches/5.3/tests/phpunit/tests/actions.php

    r46568 r46708  
    162162        $a   = new MockAction();
    163163        $tag = __FUNCTION__;
    164         $val = new stdClass;
     164        $val = new stdClass();
    165165
    166166        add_action( $tag, array( &$a, 'action' ) );
    167         // Ñall the action with PHP 4 notation for passing object by reference.
     167        // Call the action with PHP 4 notation for passing object by reference.
    168168        do_action( $tag, array( &$val ) );
    169169
Note: See TracChangeset for help on using the changeset viewer.