From 1af1cc479245e36a974d9489492f34f5c9d7c0f7 Mon Sep 17 00:00:00 2001 From: "Drew Jaynes (DrewAPicture)" Date: Fri, 28 Nov 2014 11:12:46 +0000 Subject: [PATCH] 4.1 Docs Audit: Fix DocBlock formatting for the `customize_preview_{$this->type}` hook. See #30469. git-svn-id: https://develop.svn.wordpress.org/trunk@30609 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/class-wp-customize-setting.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wp-includes/class-wp-customize-setting.php b/src/wp-includes/class-wp-customize-setting.php index 7d3511c122..3a3ff2db94 100644 --- a/src/wp-includes/class-wp-customize-setting.php +++ b/src/wp-includes/class-wp-customize-setting.php @@ -139,11 +139,11 @@ class WP_Customize_Setting { * Fires when the {@see WP_Customize_Setting::preview()} method is called for settings * not handled as theme_mods or options. * - * The dynamic portion of the hook name, $this->type, refers to the setting type. + * The dynamic portion of the hook name, `$this->type`, refers to the setting type. * * @since 4.1.0 * - * @param WP_Customize_Setting $this WP_Customize_Setting instance. + * @param WP_Customize_Setting $this {@see WP_Customize_Setting} instance. */ do_action( "customize_preview_{$this->type}", $this ); }