From 0715dc8a4f1bfffd363979ffd77583de82f57e4c Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Tue, 20 Oct 2015 18:37:54 +0000 Subject: [PATCH] Docs: Adjust syntax in the hook doc summaries for the `document_title_separator` and `document_title_parts` filters, introduced in [35294]. See #31078. See #32246. Built from https://develop.svn.wordpress.org/trunk@35301 git-svn-id: http://core.svn.wordpress.org/trunk@35267 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/general-template.php | 6 +++--- wp-includes/version.php | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/wp-includes/general-template.php b/wp-includes/general-template.php index 5fd979c124..2aa6c73a20 100644 --- a/wp-includes/general-template.php +++ b/wp-includes/general-template.php @@ -873,16 +873,16 @@ function wp_get_document_title() { } /** - * Filters the separator for the document title. + * Filter the separator for the document title. * * @since 4.4.0 * - * @param string $sep The separator. Default '-'. + * @param string $sep Document title separator. Default '-'. */ $sep = apply_filters( 'document_title_separator', '-' ); /** - * Filters the parts of the document title. + * Filter the parts of the document title. * * @since 4.4.0 * diff --git a/wp-includes/version.php b/wp-includes/version.php index f272ea1dd7..fc087b5bad 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-35300'; +$wp_version = '4.4-alpha-35301'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.