From 3e67731f319c17b892eb9ac96c6a9e179de57ee6 Mon Sep 17 00:00:00 2001 From: Theodore Brown Date: Thu, 21 Nov 2024 06:22:49 -0600 Subject: [PATCH] Improve description for new BcMath\Number object Simplified and corrected wording - BCMath isn't only for float numbers. --- releases/8.4/languages/en.php | 2 +- releases/8.4/release.inc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/releases/8.4/languages/en.php b/releases/8.4/languages/en.php index 84c7c63e1a..2e82fb34f2 100644 --- a/releases/8.4/languages/en.php +++ b/releases/8.4/languages/en.php @@ -16,7 +16,7 @@ 'dom_additions_html5_title' => 'New ext-dom features and HTML5 support', 'dom_additions_html5_description' => '

New DOM API that includes standards-compliant support for parsing HTML5 documents, fixes several long-standing compliance bugs in the behavior of the DOM functionality, and adds several functions to make working with documents more convenient.

The new DOM API is available within the Dom namespace. Documents using the new DOM API can be created using the Dom\HTMLDocument and Dom\XMLDocument classes.

', 'bcmath_title' => 'Object API for BCMath', - 'bcmath_description' => '

BCMath allows you to work with arbitrary precision float numbers in PHP. With this release, you can benefit from object-oriented style and operator overloading to use BCMath numbers.

It means, you can now use standard operators with BcMath\Number objects, which also support all bc* functions.

These objects are immutable and implement the Stringable interface, so they can be used in string contexts like echo $num.

', + 'bcmath_description' => '

New BcMath\Number object enables object-oriented usage and standard mathematical operators when working with arbitrary precision numbers.

These objects are immutable and implement the Stringable interface, so they can be used in string contexts like echo $num.

', 'new_array_find_title' => 'New array_*() functions', 'new_array_find_description' => 'New functions array_find(), array_find_key(), array_any(), and array_all() are available.', 'pdo_driver_specific_parsers_title' => 'PDO Driver specific SQL parsers', diff --git a/releases/8.4/release.inc b/releases/8.4/release.inc index b88fd6f007..e5dba4b47b 100644 --- a/releases/8.4/release.inc +++ b/releases/8.4/release.inc @@ -362,7 +362,7 @@ PHP