Make WordPress Core


Ignore:
Timestamp:
05/20/2023 10:17:57 AM (20 months ago)
Author:
SergeyBiryukov
Message:

Docs: Fix a few more typos in DocBlocks.

Follow-up to [39493], [41726], [55823], [55824], [55827].

See #57840.

File:
1 edited

Legend:

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

    r55827 r55843  
    38053805 *
    38063806 * @param resource|GdImage|false $image A value to check the type for.
    3807  * @return bool True if $image is either a GD image resource or GdImage instance,
     3807 * @return bool True if `$image` is either a GD image resource or a GdImage instance,
    38083808 *              false otherwise.
    38093809 */
     
    38123812        || is_resource( $image ) && 'gd' === get_resource_type( $image )
    38133813    ) {
    3814 
    38153814        return true;
    38163815    }
     
    38203819
    38213820/**
    3822  * Creates new GD image resource with transparency support.
     3821 * Creates a new GD image resource with transparency support.
    38233822 *
    38243823 * @todo Deprecate if possible.
Note: See TracChangeset for help on using the changeset viewer.