From 2b9750b3e4d5538e911430a43cc2c56397f318cf Mon Sep 17 00:00:00 2001 From: ryan Date: Mon, 19 Sep 2011 19:01:03 +0000 Subject: [PATCH] phpdoc typo fixes for get_template_part(). Props dgwyer, SergeyBiryukov. fixes #18555 git-svn-id: http://svn.automattic.com/wordpress/trunk@18723 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/general-template.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/general-template.php b/wp-includes/general-template.php index d1d215d4a..347061acb 100644 --- a/wp-includes/general-template.php +++ b/wp-includes/general-template.php @@ -88,12 +88,12 @@ function get_sidebar( $name = null ) { * The template is included using require, not require_once, so you may include the * same template part multiple times. * - * For the parameter, if the file is called "{slug}-special.php" then specify + * For the $name parameter, if the file is called "{slug}-special.php" then specify * "special". * * @uses locate_template() * @since 3.0.0 - * @uses do_action() Calls 'get_template_part{$slug}' action. + * @uses do_action() Calls 'get_template_part_{$slug}' action. * * @param string $slug The slug name for the generic template. * @param string $name The name of the specialised template.