From e328e26de3313f44e21cd5b7a98e16e041d255c6 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Tue, 8 Dec 2020 11:49:23 +0000 Subject: [PATCH] Docs: Fix typo in references to `WP_Error` in some DocBlocks. See #51800. git-svn-id: https://develop.svn.wordpress.org/trunk@49769 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/media.php | 11 ++++++----- src/wp-includes/taxonomy.php | 8 ++++---- 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/src/wp-includes/media.php b/src/wp-includes/media.php index e651dcbccf..b219ab0ff2 100644 --- a/src/wp-includes/media.php +++ b/src/wp-includes/media.php @@ -3505,7 +3505,8 @@ function is_gd_image( $image ) { * * @param int $width Image width in pixels. * @param int $height Image height in pixels. - * @return resource|GdImage|false The GD image resource or GdImage instance on success. False on failure. + * @return resource|GdImage|false The GD image resource or GdImage instance on success. + * False on failure. */ function wp_imagecreatetruecolor( $width, $height ) { $img = imagecreatetruecolor( $width, $height ); @@ -3578,8 +3579,8 @@ function wp_max_upload_size() { * @param string $path Path to the file to load. * @param array $args Optional. Additional arguments for retrieving the image editor. * Default empty array. - * @return WP_Image_Editor|WP_Error The WP_Image_Editor object if successful, an WP_Error - * object otherwise. + * @return WP_Image_Editor|WP_Error The WP_Image_Editor object on success, + * a WP_Error object otherwise. */ function wp_get_image_editor( $path, $args = array() ) { $args['path'] = $path; @@ -3630,8 +3631,8 @@ function wp_image_editor_supports( $args = array() ) { * @since 3.5.0 * * @param array $args Optional. Array of arguments for choosing a capable editor. Default empty array. - * @return string|false Class name for the first editor that claims to support the request. False if no - * editor claims to support the request. + * @return string|false Class name for the first editor that claims to support the request. + * False if no editor claims to support the request. */ function _wp_image_editor_choose( $args = array() ) { require_once ABSPATH . WPINC . '/class-wp-image-editor.php'; diff --git a/src/wp-includes/taxonomy.php b/src/wp-includes/taxonomy.php index e9d7ff1065..c3decccf49 100644 --- a/src/wp-includes/taxonomy.php +++ b/src/wp-includes/taxonomy.php @@ -724,10 +724,10 @@ function unregister_taxonomy_for_object_type( $taxonomy, $object_type ) { /** * Retrieve object_ids of valid taxonomy and term. * - * The strings of $taxonomies must exist before this function will continue. On - * failure of finding a valid taxonomy, it will return an WP_Error class, kind - * of like Exceptions in PHP 5, except you can't catch them. Even so, you can - * still test for the WP_Error class and get the error message. + * The strings of $taxonomies must exist before this function will continue. + * On failure of finding a valid taxonomy, it will return a WP_Error class, + * kind of like Exceptions in PHP 5, except you can't catch them. Even so, + * you can still test for the WP_Error class and get the error message. * * The $terms aren't checked the same as $taxonomies, but still need to exist * for $object_ids to be returned.