diff --git a/wp-includes/plugin.php b/wp-includes/plugin.php index 11ba3f8cf4..e2d2a0b50d 100644 --- a/wp-includes/plugin.php +++ b/wp-includes/plugin.php @@ -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) { diff --git a/wp-includes/version.php b/wp-includes/version.php index 282ba8614a..b65f8c8fef 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -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.