diff --git a/wp-includes/category-template.php b/wp-includes/category-template.php index ea931d0e7a..63fda9eafd 100644 --- a/wp-includes/category-template.php +++ b/wp-includes/category-template.php @@ -1388,7 +1388,7 @@ function get_term_parents_list( $term_id, $taxonomy, $args = array() ) { * @param string $before Optional. Before list. * @param string $sep Optional. Separate items using this. * @param string $after Optional. After list. - * @return void|false False on WordPress error. + * @return void|false Void on success, false on failure. */ function the_terms( $id, $taxonomy, $before = '', $sep = ', ', $after = '' ) { $term_list = get_the_term_list( $id, $taxonomy, $before, $sep, $after ); diff --git a/wp-includes/version.php b/wp-includes/version.php index c351fdc164..bb859663f1 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.4-alpha-47102'; +$wp_version = '5.4-alpha-47103'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.