diff --git a/wp-includes/class-wp-editor.php b/wp-includes/class-wp-editor.php index 8879797914..73de84de2b 100644 --- a/wp-includes/class-wp-editor.php +++ b/wp-includes/class-wp-editor.php @@ -144,7 +144,7 @@ final class _WP_Editors { * @static * @param string $content The initial content of the editor. * @param string $editor_id ID for the textarea and TinyMCE and Quicktags instances (can contain only ASCII letters and numbers). - * @param array $settings See the _parse_settings() method for description. + * @param array $settings See _WP_Editors()::parse_settings() for description. */ public static function editor( $content, $editor_id, $settings = array() ) { $set = self::parse_settings( $editor_id, $settings ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 266e1968a3..e61bd12fe9 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.9-alpha-40909'; +$wp_version = '4.9-alpha-40910'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.