From c8bf2ce72791befce90b870a0927c10f206e68fe Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Thu, 15 Oct 2015 20:51:58 +0000 Subject: [PATCH] Docs: Fix a typo in an inline comment in `wp_get_attachment_image_srcset_array()`. Props neoxx. Fixes #34319. git-svn-id: https://develop.svn.wordpress.org/trunk@35210 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/media.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/media.php b/src/wp-includes/media.php index 799d63f473..e693ba6be6 100644 --- a/src/wp-includes/media.php +++ b/src/wp-includes/media.php @@ -868,7 +868,7 @@ function wp_get_attachment_image_srcset_array( $attachment_id, $size = 'medium' $img_width = ( $image ) ? $image['width'] : $img_meta['width']; $img_height = ( $image ) ? $image['height'] : $img_meta['height']; - // Bail early if the width isn't greater that zero. + // Bail early if the width isn't greater than zero. if ( ! $img_width > 0 ) { return false; }