diff --git a/wp-includes/general-template.php b/wp-includes/general-template.php index 8e58b5cf49..9be181ce93 100644 --- a/wp-includes/general-template.php +++ b/wp-includes/general-template.php @@ -3018,7 +3018,8 @@ function wp_default_editor() { * * @since 2.5.0 * - * @param array $r An array of editors. Accepts 'tinymce', 'html', 'test'. + * @param string $r string Which editor should be displayed by default. Either 'tinymce', + * 'html', or 'test' */ return apply_filters( 'wp_default_editor', $r ); } diff --git a/wp-includes/version.php b/wp-includes/version.php index 8b78105351..e53c43722a 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.7-beta1-39073'; +$wp_version = '4.7-beta1-39074'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.