From f8a5c7b8d4a9885ea62cdf48c084b85099253f42 Mon Sep 17 00:00:00 2001 From: John Blackbourn Date: Fri, 4 Nov 2016 12:14:05 +0000 Subject: [PATCH] Editor: Correct the docblock for the `wp_default_editor` filter. Props dimadin See #38327 git-svn-id: https://develop.svn.wordpress.org/trunk@39139 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/general-template.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/wp-includes/general-template.php b/src/wp-includes/general-template.php index 9be181ce93..f2a8774794 100644 --- a/src/wp-includes/general-template.php +++ b/src/wp-includes/general-template.php @@ -3018,8 +3018,7 @@ function wp_default_editor() { * * @since 2.5.0 * - * @param string $r string Which editor should be displayed by default. Either 'tinymce', - * 'html', or 'test' + * @param string $r Which editor should be displayed by default. Either 'tinymce', 'html', or 'test'. */ return apply_filters( 'wp_default_editor', $r ); }