From 1871d57dc5cf17ea5a183d32bb358ced54aaf042 Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Tue, 20 Oct 2015 18:35:46 +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. git-svn-id: https://develop.svn.wordpress.org/trunk@35301 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/general-template.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/wp-includes/general-template.php b/src/wp-includes/general-template.php index 5fd979c124..2aa6c73a20 100644 --- a/src/wp-includes/general-template.php +++ b/src/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 *