Docs: Correct the docs for `POMO_Reader::setEndian()`.

The parameter type and name where the wrong way around.

Props ishitaka.
Fixes #45410.


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


git-svn-id: http://core.svn.wordpress.org/trunk@44445 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Gary Pendergast 2019-01-16 05:36:48 +00:00
parent 19642fd0c9
commit 5ed802faf4
2 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ if ( ! class_exists( 'POMO_Reader', false ) ) :
/**
* Sets the endianness of the file.
*
* @param $endian string 'big' or 'little'
* @param string $endian Set the endianness of the file. Accepts 'big', or 'little'.
*/
function setEndian( $endian ) {
$this->endian = $endian;

View File

@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.1-beta1-44613';
$wp_version = '5.1-beta1-44614';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.