From edfe305608415683e72ed22cc0583bf233ddcec4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20=C5=A0tancl?= Date: Mon, 16 May 2022 12:51:29 +0200 Subject: [PATCH] fix docblock grammar --- src/Currency.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Currency.php b/src/Currency.php index 55cf377..3f071bf 100644 --- a/src/Currency.php +++ b/src/Currency.php @@ -40,7 +40,7 @@ class Currency implements Arrayable, JsonSerializable /** How many decimals of the currency's values should get rounded. */ protected int $rounding; - /** The setting used for determining if trailing decimal zeros should be trimmed. */ + /** Should trailing decimal zeros be trimmed. */ protected bool $trimTrailingDecimalZeros; /** Create a new Currency instance. */ @@ -138,7 +138,7 @@ class Currency implements Arrayable, JsonSerializable return $this->rounding; } - /** Get the setting for how trailing decimal zeroes should be handled. */ + /** Get the currency's setting for trimming trailing decimal zeros. */ public function trimTrailingDecimalZeros(): bool { return $this->trimTrailingDecimalZeros;