Docs: Correct erroneous class references in @see tags.

Props coffee2code.
Fixes #43158.

git-svn-id: https://develop.svn.wordpress.org/trunk@42630 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov
2018-02-01 01:19:50 +00:00
parent 1c0257d340
commit cc9a5641a6
4 changed files with 5 additions and 5 deletions

View File

@@ -73,7 +73,7 @@ final class _WP_Editors {
*
* @since 4.0.0
*
* @see _WP_Editors()::parse_settings()
* @see _WP_Editors::parse_settings()
*
* @param array $settings Array of editor arguments.
* @param string $editor_id ID for the current editor instance.
@@ -151,7 +151,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 _WP_Editors()::parse_settings() 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 );