From 5ed802faf4fb98f8b32ebacba043236a90ca9f14 Mon Sep 17 00:00:00 2001 From: Gary Pendergast Date: Wed, 16 Jan 2019 05:36:48 +0000 Subject: [PATCH] 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 --- wp-includes/pomo/streams.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/pomo/streams.php b/wp-includes/pomo/streams.php index 9cd5ac441e..835078b7d1 100644 --- a/wp-includes/pomo/streams.php +++ b/wp-includes/pomo/streams.php @@ -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; diff --git a/wp-includes/version.php b/wp-includes/version.php index 04352af9d6..dd5806ba40 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -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.