Correct a typo in the inline docs for `add_action()`.

Props nabil_kadimi, swissspidy
Fixes #32697

Built from https://develop.svn.wordpress.org/trunk@32829


git-svn-id: http://core.svn.wordpress.org/trunk@32800 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
John Blackbourn 2015-06-18 08:37:25 +00:00
parent bc2630e099
commit 768d8507e5
2 changed files with 2 additions and 2 deletions

View File

@ -429,7 +429,7 @@ function doing_action( $action = null ) {
* Lower numbers correspond with earlier execution,
* and functions with the same priority are executed
* in the order in which they were added to the action.
* @param int $accepted_args Optional. The number of arguments the function accept. Default 1.
* @param int $accepted_args Optional. The number of arguments the function accepts. Default 1.
* @return true Will always return true.
*/
function add_action($tag, $function_to_add, $priority = 10, $accepted_args = 1) {

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.3-alpha-32828';
$wp_version = '4.3-alpha-32829';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.