From 82bed951d0e4f8ab1cce4197fe8177dadd2e9e75 Mon Sep 17 00:00:00 2001 From: Floris Ankersmit Date: Mon, 1 Jul 2024 15:34:47 +0200 Subject: [PATCH] Change output currency --- doc/features/allocation.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/features/allocation.rst b/doc/features/allocation.rst index 135ea0ec5..d069a0b64 100644 --- a/doc/features/allocation.rst +++ b/doc/features/allocation.rst @@ -36,6 +36,6 @@ An amount of money can be allocated to N targets using ``allocateTo()``. .. code-block:: php - $value = Money::EUR(800); // $8.00 + $value = Money::EUR(800); // €8.00 - $result = $value->allocateTo(3); // $result = [$2.67, $2.67, $2.66] + $result = $value->allocateTo(3); // $result = [€2.67, €2.67, €2.66]