From b170b606930f5afcca7d6e3f99da9cb23a5b3360 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Thu, 1 Feb 2018 01:20:30 +0000 Subject: [PATCH] Docs: Correct erroneous class references in `@see` tags. Props coffee2code. Fixes #43158. Built from https://develop.svn.wordpress.org/trunk@42630 git-svn-id: http://core.svn.wordpress.org/trunk@42459 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-wp-customize-nav-menus.php | 2 +- wp-includes/class-wp-customize-widgets.php | 2 +- wp-includes/class-wp-editor.php | 4 ++-- wp-includes/version.php | 2 +- wp-includes/widgets/class-wp-widget-text.php | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/wp-includes/class-wp-customize-nav-menus.php b/wp-includes/class-wp-customize-nav-menus.php index 9ad9421c09..9ffe0867b1 100644 --- a/wp-includes/class-wp-customize-nav-menus.php +++ b/wp-includes/class-wp-customize-nav-menus.php @@ -1323,7 +1323,7 @@ final class WP_Customize_Nav_Menus { * * @since 4.3.0 * @see wp_nav_menu() - * @see WP_Customize_Widgets_Partial_Refresh::filter_dynamic_sidebar_params() + * @see WP_Customize_Widgets::filter_dynamic_sidebar_params() * * @param array $args An array containing wp_nav_menu() arguments. * @return array Arguments. diff --git a/wp-includes/class-wp-customize-widgets.php b/wp-includes/class-wp-customize-widgets.php index 5b2b04c78e..6543429462 100644 --- a/wp-includes/class-wp-customize-widgets.php +++ b/wp-includes/class-wp-customize-widgets.php @@ -1620,7 +1620,7 @@ final class WP_Customize_Widgets { * @type array $args Sidebar args. * @type array $widget_args Widget args. * } - * @see WP_Customize_Nav_Menus_Partial_Refresh::filter_wp_nav_menu_args() + * @see WP_Customize_Nav_Menus::filter_wp_nav_menu_args() * * @return array Params. */ diff --git a/wp-includes/class-wp-editor.php b/wp-includes/class-wp-editor.php index 8946aad17b..0d73848b14 100644 --- a/wp-includes/class-wp-editor.php +++ b/wp-includes/class-wp-editor.php @@ -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 ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 8baf55d05a..bfc769e95a 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '5.0-alpha-42625'; +$wp_version = '5.0-alpha-42630'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. diff --git a/wp-includes/widgets/class-wp-widget-text.php b/wp-includes/widgets/class-wp-widget-text.php index 21feb3f20a..36b05b3730 100644 --- a/wp-includes/widgets/class-wp-widget-text.php +++ b/wp-includes/widgets/class-wp-widget-text.php @@ -431,7 +431,7 @@ class WP_Widget_Text extends WP_Widget { * @since 2.8.0 * @since 4.8.0 Form only contains hidden inputs which are synced with JS template. * @since 4.8.1 Restored original form to be displayed when in legacy mode. - * @see WP_Widget_Visual_Text::render_control_template_scripts() + * @see WP_Widget_Text::render_control_template_scripts() * @see _WP_Editors::editor() * * @param array $instance Current settings.