From b6397b4fda3d2781ffcb865f0606a7ab594553e4 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Wed, 14 Sep 2016 21:48:28 +0000 Subject: [PATCH] Docs: Use a third-person singular verb in the DocBlock summary for `get_theme_file_uri()`, `get_parent_theme_file_uri()`, `get_theme_file_path()`, and `get_parent_theme_file_path()`, introduced in [38578]. See #18302. Built from https://develop.svn.wordpress.org/trunk@38606 git-svn-id: http://core.svn.wordpress.org/trunk@38549 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/link-template.php | 8 ++++---- wp-includes/version.php | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/wp-includes/link-template.php b/wp-includes/link-template.php index e3ff574349..0152cf403f 100644 --- a/wp-includes/link-template.php +++ b/wp-includes/link-template.php @@ -4026,7 +4026,7 @@ function get_avatar_data( $id_or_email, $args = null ) { } /** - * Retrieve the URL of a file in the theme. + * Retrieves the URL of a file in the theme. * * Searches in the stylesheet directory before the template directory so themes * which inherit from a parent theme can just override one file. @@ -4059,7 +4059,7 @@ function get_theme_file_uri( $file = '' ) { } /** - * Retrieve the URL of a file in the parent theme. + * Retrieves the URL of a file in the parent theme. * * @since 4.7.0 * @@ -4087,7 +4087,7 @@ function get_parent_theme_file_uri( $file = '' ) { } /** - * Retrieve the path of a file in the theme. + * Retrieves the path of a file in the theme. * * Searches in the stylesheet directory before the template directory so themes * which inherit from a parent theme can just override one file. @@ -4120,7 +4120,7 @@ function get_theme_file_path( $file = '' ) { } /** - * Retrieve the path of a file in the parent theme. + * Retrieves the path of a file in the parent theme. * * @since 4.7.0 * diff --git a/wp-includes/version.php b/wp-includes/version.php index 5136884388..9be7447e31 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.7-alpha-38605'; +$wp_version = '4.7-alpha-38606'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.