Docs: Increase the specificity of various property documentation.

See #55646

Built from https://develop.svn.wordpress.org/trunk@54318


git-svn-id: http://core.svn.wordpress.org/trunk@53877 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
John Blackbourn
2022-09-26 22:10:16 +00:00
parent d7893c3cea
commit 2eabdd1490
5 changed files with 11 additions and 11 deletions

View File

@@ -185,7 +185,7 @@ class WP_Rewrite {
* Rewrite rules to match against the request to find the redirect or query.
*
* @since 1.5.0
* @var array
* @var string[]
*/
public $rules;
@@ -195,7 +195,7 @@ class WP_Rewrite {
* Those not generated by the class, see add_rewrite_rule().
*
* @since 2.1.0
* @var array
* @var string[]
*/
public $extra_rules = array();
@@ -205,7 +205,7 @@ class WP_Rewrite {
* Those not generated by the class, see add_rewrite_rule().
*
* @since 2.3.0
* @var array
* @var string[]
*/
public $extra_rules_top = array();
@@ -216,7 +216,7 @@ class WP_Rewrite {
* and are added by add_external_rule().
*
* @since 2.1.0
* @var array
* @var string[]
*/
public $non_wp_rules = array();
@@ -224,7 +224,7 @@ class WP_Rewrite {
* Extra permalink structures, e.g. categories, added by add_permastruct().
*
* @since 2.1.0
* @var array
* @var array[]
*/
public $extra_permastructs = array();
@@ -232,7 +232,7 @@ class WP_Rewrite {
* Endpoints (like /trackback/) added by add_rewrite_endpoint().
*
* @since 2.1.0
* @var array
* @var array[]
*/
public $endpoints;