From d4711aff8a677df7aa9aaf1c78b240c7ec25e147 Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Thu, 15 Oct 2015 20:52:24 +0000 Subject: [PATCH] Docs: Fix a typo in an inline comment in `wp_get_attachment_image_srcset_array()`. Props neoxx. Fixes #34319. Built from https://develop.svn.wordpress.org/trunk@35210 git-svn-id: http://core.svn.wordpress.org/trunk@35176 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/media.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/media.php b/wp-includes/media.php index 799d63f473..e693ba6be6 100644 --- a/wp-includes/media.php +++ b/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; } diff --git a/wp-includes/version.php b/wp-includes/version.php index 07e02d2244..bfddbf368c 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-35209'; +$wp_version = '4.4-alpha-35210'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.