Docs: Fix typo in `term_exists()` DocBlock.

Props milana_cap, danieltj.
Fixes #43268.

git-svn-id: https://develop.svn.wordpress.org/trunk@42699 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2018-02-11 17:15:47 +00:00
parent 2e2fd97287
commit 1ac83e86f5
1 changed files with 1 additions and 1 deletions

View File

@ -1328,7 +1328,7 @@ function has_term_meta( $term_id ) {
* @param int $parent Optional. ID of parent term under which to confine the exists search.
* @return mixed Returns null if the term does not exist. Returns the term ID
* if no taxonomy is specified and the term ID exists. Returns
* an array of the term ID and the term taxonomy ID the taxonomy
* an array of the term ID and the term taxonomy ID if the taxonomy
* is specified and the pairing exists.
*/
function term_exists( $term, $taxonomy = '', $parent = null ) {