From b5c34dc4119a786fdc9c9c367bfc5576a0d3ddea Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Tue, 19 Feb 2013 23:40:03 +0000 Subject: [PATCH] Fix typo in phpdoc. see #17515. git-svn-id: http://core.svn.wordpress.org/trunk@23457 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/template.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-admin/includes/template.php b/wp-admin/includes/template.php index f97798c61b..07d5fed55b 100644 --- a/wp-admin/includes/template.php +++ b/wp-admin/includes/template.php @@ -807,7 +807,7 @@ function wp_import_upload_form( $action ) { * @param string|object $screen Optional. The screen on which to show the box (post, page, link). Defaults to current screen. * @param string $context Optional. The context within the page where the boxes should show ('normal', 'advanced'). * @param string $priority Optional. The priority within the context where the boxes should show ('high', 'low'). - * @param array $callback_args Optional. Data that should set as the "args" property of the box array (which is the second parameter passed to your callback). + * @param array $callback_args Optional. Data that should be set as the "args" property of the box array (which is the second parameter passed to your callback). */ function add_meta_box( $id, $title, $callback, $screen = null, $context = 'advanced', $priority = 'default', $callback_args = null ) { global $wp_meta_boxes;