Docs: Remove extra spaces from `@param` tags.
Per the documentation standards, `@param` tags should be aligned with each other, but not with the `@return` tag. See #49572. Built from https://develop.svn.wordpress.org/trunk@48110 git-svn-id: http://core.svn.wordpress.org/trunk@47879 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
b16368c268
commit
be16bb9fba
|
@ -346,7 +346,7 @@ class WP_Upgrader {
|
|||
* @since 4.9.0
|
||||
* @access protected
|
||||
*
|
||||
* @param array $nested_files Array of files as returned by WP_Filesystem::dirlist()
|
||||
* @param array $nested_files Array of files as returned by WP_Filesystem::dirlist().
|
||||
* @param string $path Relative path to prepend to child nodes. Optional.
|
||||
* @return array A flattened array of the $nested_files specified.
|
||||
*/
|
||||
|
|
|
@ -1292,6 +1292,7 @@
|
|||
|
||||
/**
|
||||
* Remove a menu item.
|
||||
*
|
||||
* @param {object} el The element to be removed as a jQuery object.
|
||||
*
|
||||
* @fires document#menu-removing-item Passes the element to be removed.
|
||||
|
|
|
@ -782,7 +782,7 @@ class WP_Meta_Query {
|
|||
*
|
||||
* @param array $clause Query clause.
|
||||
* @param array $parent_query Parent query of $clause.
|
||||
* @return string|bool Table alias if found, otherwise false.
|
||||
* @return string|false Table alias if found, otherwise false.
|
||||
*/
|
||||
protected function find_compatible_table_alias( $clause, $parent_query ) {
|
||||
$alias = false;
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.5-alpha-48109';
|
||||
$wp_version = '5.5-alpha-48110';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue