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.