@@ -74,7 +74,7 @@ function wp_schedule_single_event( $timestamp, $hook, $args = array(), $wp_error
7474 * Return true if the event was scheduled, false or a WP_Error if not.
7575 *
7676 * @since 5.1.0
77- * @since 5.7.0 The `$wp_error` parameter was added, and a ` WP_Error` object can now be returned.
77+ * @since 5.7.0 The `$wp_error` parameter was added, and a WP_Error object can now be returned.
7878 *
7979 * @param null|bool|WP_Error $result The value to return instead. Default null to continue adding the event.
8080 * @param object $event {
@@ -385,7 +385,7 @@ function wp_reschedule_event( $timestamp, $recurrence, $hook, $args = array(), $
385385 * rescheduled, false or a WP_Error if not.
386386 *
387387 * @since 5.1.0
388- * @since 5.7.0 The `$wp_error` parameter was added, and a ` WP_Error` object can now be returned.
388+ * @since 5.7.0 The `$wp_error` parameter was added, and a WP_Error object can now be returned.
389389 *
390390 * @param null|bool|WP_Error $pre Value to return instead. Default null to continue adding the event.
391391 * @param object $event {
@@ -482,7 +482,7 @@ function wp_unschedule_event( $timestamp, $hook, $args = array(), $wp_error = fa
482482 * unscheduled, false or a WP_Error if not.
483483 *
484484 * @since 5.1.0
485- * @since 5.7.0 The `$wp_error` parameter was added, and a ` WP_Error` object can now be returned.
485+ * @since 5.7.0 The `$wp_error` parameter was added, and a WP_Error object can now be returned.
486486 *
487487 * @param null|bool|WP_Error $pre Value to return instead. Default null to continue unscheduling the event.
488488 * @param int $timestamp Unix timestamp (UTC) for when to run the event.
@@ -573,7 +573,7 @@ function wp_clear_scheduled_hook( $hook, $args = array(), $wp_error = false ) {
573573 * or a WP_Error if unscheduling one or more events fails.
574574 *
575575 * @since 5.1.0
576- * @since 5.7.0 The `$wp_error` parameter was added, and a ` WP_Error` object can now be returned.
576+ * @since 5.7.0 The `$wp_error` parameter was added, and a WP_Error object can now be returned.
577577 *
578578 * @param null|int|false|WP_Error $pre Value to return instead. Default null to continue unscheduling the event.
579579 * @param string $hook Action hook, the execution of which will be unscheduled.
@@ -664,7 +664,7 @@ function wp_unschedule_hook( $hook, $wp_error = false ) {
664664 * on the value of the `$wp_error` parameter.
665665 *
666666 * @since 5.1.0
667- * @since 5.7.0 The `$wp_error` parameter was added, and a ` WP_Error` object can now be returned.
667+ * @since 5.7.0 The `$wp_error` parameter was added, and a WP_Error object can now be returned.
668668 *
669669 * @param null|int|false|WP_Error $pre Value to return instead. Default null to continue unscheduling the hook.
670670 * @param string $hook Action hook, the execution of which will be unscheduled.
@@ -853,6 +853,7 @@ function wp_next_scheduled( $hook, $args = array() ) {
853853 * @type int $interval Optional. The interval time in seconds for the schedule. Only
854854 * present for recurring events.
855855 * }
856+ * @param string $hook Action hook of the event.
856857 * @param array $args Array containing each separate argument to pass to the hook
857858 * callback function.
858859 */
0 commit comments