Docs: Expand `@return` description for `the_terms()`.

See #48303.
Built from https://develop.svn.wordpress.org/trunk@47103


git-svn-id: http://core.svn.wordpress.org/trunk@46903 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2020-01-22 00:41:06 +00:00
parent cfa3dc8ee8
commit 6cf32058ff
2 changed files with 2 additions and 2 deletions

View File

@ -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 );

View File

@ -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.