From d2dee54669d4d7fb39cfa4867eaa2949720879e9 Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Thu, 8 Oct 2015 16:51:24 +0000 Subject: [PATCH] Docs: Relocate some more DocBlock-level `@see` tags and add some missing `@access` tags in `WP_Rewrite`. See #34218. Built from https://develop.svn.wordpress.org/trunk@34941 git-svn-id: http://core.svn.wordpress.org/trunk@34906 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-wp-rewrite.php | 10 +++++++--- wp-includes/version.php | 2 +- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/wp-includes/class-wp-rewrite.php b/wp-includes/class-wp-rewrite.php index 43f3e28087..cdfa529542 100644 --- a/wp-includes/class-wp-rewrite.php +++ b/wp-includes/class-wp-rewrite.php @@ -153,9 +153,11 @@ class WP_Rewrite { * is "/archive/". If the permalink structure is "/%year%/%postname%/" * then the front is "/". * - * @see WP_Rewrite::init() * @since 1.5.0 + * @access public * @var string + * + * @see WP_Rewrite::init() */ public $front; @@ -166,10 +168,12 @@ class WP_Rewrite { * `WP_Rewrite::$index` with a trailing slash appended. Otherwise the root * will be empty. * + * @since 1.5.0 + * @access public + * @var string + * * @see WP_Rewrite::init() * @see WP_Rewrite::using_index_permalinks() - * @since 1.5.0 - * @var string */ public $root = ''; diff --git a/wp-includes/version.php b/wp-includes/version.php index ad26000995..0883f0c050 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-34940'; +$wp_version = '4.4-alpha-34941'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.