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
This commit is contained in:
Drew Jaynes (DrewAPicture) 2014-11-28 11:12:46 +00:00
parent 177c3e0c61
commit 1af1cc4792

View File

@ -139,11 +139,11 @@ class WP_Customize_Setting {
* Fires when the {@see WP_Customize_Setting::preview()} method is called for settings * Fires when the {@see WP_Customize_Setting::preview()} method is called for settings
* not handled as theme_mods or options. * 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 * @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 ); do_action( "customize_preview_{$this->type}", $this );
} }