Make WordPress Core

Changeset 46707


Ignore:
Timestamp:
11/11/2019 06:48:06 PM (5 years ago)
Author:
whyisjake
Message:

Tests: Fix a typo in an inline comment.

Fix a regression from [46568].

Props david.binda.
See #48312.

File:
1 edited

Legend:

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

    r46689 r46707  
    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.