diff --git a/wp-includes/class-wp-customize-control.php b/wp-includes/class-wp-customize-control.php index 52a8a91ee6..cb5ac6d540 100644 --- a/wp-includes/class-wp-customize-control.php +++ b/wp-includes/class-wp-customize-control.php @@ -175,7 +175,7 @@ class WP_Customize_Control { * attribute names are the keys and values are the values. Not * used for 'checkbox', 'radio', 'select', 'textarea', or * 'dropdown-pages' control types. Default empty array. - * @type array $json Deprecated. Use {@see WP_Customize_Control->json()} instead. + * @type array $json Deprecated. Use WP_Customize_Control::json() instead. * @type string $type Control type. Core controls include 'text', 'checkbox', * 'textarea', 'radio', 'select', and 'dropdown-pages'. Additional * input types such as 'email', 'url', 'number', 'hidden', and @@ -444,12 +444,12 @@ class WP_Customize_Control { /** * Render the control's content. * - * Allows the content to be overriden without having to rewrite the wrapper in $this->render(). + * Allows the content to be overriden without having to rewrite the wrapper in `$this::render()`. * * Supports basic input types `text`, `checkbox`, `textarea`, `radio`, `select` and `dropdown-pages`. * Additional input types such as `email`, `url`, `number`, `hidden` and `date` are supported implicitly. * - * Control content can alternately be rendered in JS. See {@see WP_Customize_Control::print_template()}. + * Control content can alternately be rendered in JS. See WP_Customize_Control::print_template(). * * @since 3.4.0 */ diff --git a/wp-includes/version.php b/wp-includes/version.php index e8b517a4be..34d7723554 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.6-alpha-37336'; +$wp_version = '4.6-alpha-37337'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.