diff --git a/wp-admin/includes/class-wp-press-this.php b/wp-admin/includes/class-wp-press-this.php index c49d764da0..4a2bde8922 100644 --- a/wp-admin/includes/class-wp-press-this.php +++ b/wp-admin/includes/class-wp-press-this.php @@ -944,7 +944,7 @@ class WP_Press_This { * @access public * * @param array $data The site's data. - * @returns array Embeds selected to be available. + * @return array Embeds selected to be available. */ public function get_embeds( $data ) { $selected_embeds = array(); @@ -977,7 +977,7 @@ class WP_Press_This { * @access public * * @param array $data The site's data. - * @returns array + * @return array */ public function get_images( $data ) { $selected_images = array(); @@ -1011,7 +1011,7 @@ class WP_Press_This { * @access public * * @param array $data The site's data. - * @returns string Discovered canonical URL, or empty + * @return string Discovered canonical URL, or empty */ public function get_canonical_link( $data ) { $link = ''; @@ -1042,7 +1042,7 @@ class WP_Press_This { * @access public * * @param array $data The site's data. - * @returns string Discovered site name, or empty + * @return string Discovered site name, or empty */ public function get_source_site_name( $data ) { $name = ''; @@ -1065,7 +1065,7 @@ class WP_Press_This { * @access public * * @param array $data The site's data. - * @returns string Discovered page title, or empty + * @return string Discovered page title, or empty */ public function get_suggested_title( $data ) { $title = ''; @@ -1094,7 +1094,7 @@ class WP_Press_This { * @access public * * @param array $data The site's data. - * @returns string Discovered content, or empty + * @return string Discovered content, or empty */ public function get_suggested_content( $data ) { $content = $text = ''; diff --git a/wp-includes/class-wp-image-editor-gd.php b/wp-includes/class-wp-image-editor-gd.php index 0f66c0eeaf..53f083782a 100644 --- a/wp-includes/class-wp-image-editor-gd.php +++ b/wp-includes/class-wp-image-editor-gd.php @@ -346,7 +346,7 @@ class WP_Image_Editor_GD extends WP_Image_Editor { * * @param bool $horz Flip along Horizontal Axis * @param bool $vert Flip along Vertical Axis - * @returns true|WP_Error + * @return true|WP_Error */ public function flip( $horz, $vert ) { $w = $this->size['width']; diff --git a/wp-includes/class-wp-image-editor-imagick.php b/wp-includes/class-wp-image-editor-imagick.php index 143e710280..bcfb576433 100644 --- a/wp-includes/class-wp-image-editor-imagick.php +++ b/wp-includes/class-wp-image-editor-imagick.php @@ -413,7 +413,7 @@ class WP_Image_Editor_Imagick extends WP_Image_Editor { * * @param bool $horz Flip along Horizontal Axis * @param bool $vert Flip along Vertical Axis - * @returns true|WP_Error + * @return true|WP_Error */ public function flip( $horz, $vert ) { try { diff --git a/wp-includes/version.php b/wp-includes/version.php index 618adb576a..7b2da8ceb8 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.3-beta1-33051'; +$wp_version = '4.3-beta1-33052'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.