Editor: Correct the description of the parameter passed to the `wp_default_editor` filter.

Props goto10
Fixes #38327


git-svn-id: https://develop.svn.wordpress.org/trunk@39074 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
John Blackbourn 2016-11-01 19:55:46 +00:00
parent d13b9b284a
commit 9cac5048b4
1 changed files with 2 additions and 1 deletions

View File

@ -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 );
}