From 8f43f326b15f89f67d24e6a73f19bbd7c660e94c Mon Sep 17 00:00:00 2001 From: Juerd Waalboer Date: Sun, 12 Jun 2022 02:34:34 +0200 Subject: [PATCH] typo --- lib/RevBank/Amount.pod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/RevBank/Amount.pod b/lib/RevBank/Amount.pod index 244398f..8686cae 100644 --- a/lib/RevBank/Amount.pod +++ b/lib/RevBank/Amount.pod @@ -111,6 +111,6 @@ $amount + 1.001 >> won't work because 0.001 has too many digits after the decimal point. When working with values that aren't safe, hard-coded literals, always -turn them into RevBank::Amount objects first, which takes care of te +turn them into RevBank::Amount objects first, which takes care of the necessary rounding: C<< $amount + RevBank::Amount->new_from_float(1.001) >>.