Make WordPress Core

Changeset 36102


Ignore:
Timestamp:
12/26/2015 11:06:47 AM (8 years ago)
Author:
SergeyBiryukov
Message:

Docs: Fix typo in a comment in wp_rand().

Props boluda.
Fixes #35228.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/pluggable.php

    r35980 r36102  
    21922192        try {
    21932193            $_max = ( 0 != $max ) ? $max : $max_random_number;
    2194             // wp_rand() can accept arguements in either order, PHP cannot.
     2194            // wp_rand() can accept arguments in either order, PHP cannot.
    21952195            $_max = max( $min, $_max );
    21962196            $_min = min( $min, $_max );
Note: See TracChangeset for help on using the changeset viewer.