From e1e041271e7e871170bbab86e28968d7de706124 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sun, 11 Feb 2018 17:16:29 +0000 Subject: [PATCH] Docs: Fix typo in `term_exists()` DocBlock. Props milana_cap, danieltj. Fixes #43268. Built from https://develop.svn.wordpress.org/trunk@42699 git-svn-id: http://core.svn.wordpress.org/trunk@42527 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/taxonomy.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/taxonomy.php b/wp-includes/taxonomy.php index 8a8dcc09ca..e89704d0b2 100644 --- a/wp-includes/taxonomy.php +++ b/wp-includes/taxonomy.php @@ -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 ) { diff --git a/wp-includes/version.php b/wp-includes/version.php index 5d5db51707..367170593b 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '5.0-alpha-42698'; +$wp_version = '5.0-alpha-42699'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.