You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@freemarker.apache.org by dd...@apache.org on 2020/02/16 16:30:48 UTC

[freemarker] 03/06: (Typo in source code comment)

This is an automated email from the ASF dual-hosted git repository.

ddekany pushed a commit to branch 2.3-gae
in repository https://gitbox.apache.org/repos/asf/freemarker.git

commit 6eba0239aacf277b7709a77f28166c8b470c9b4d
Author: ddekany <dd...@apache.org>
AuthorDate: Sun Feb 16 17:21:04 2020 +0100

    (Typo in source code comment)
---
 .../test/templatesuite/templates/overloaded-methods-2-bwici-2.3.20.ftl  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/test/resources/freemarker/test/templatesuite/templates/overloaded-methods-2-bwici-2.3.20.ftl b/src/test/resources/freemarker/test/templatesuite/templates/overloaded-methods-2-bwici-2.3.20.ftl
index 9142bbb..835e64c 100644
--- a/src/test/resources/freemarker/test/templatesuite/templates/overloaded-methods-2-bwici-2.3.20.ftl
+++ b/src/test/resources/freemarker/test/templatesuite/templates/overloaded-methods-2-bwici-2.3.20.ftl
@@ -97,7 +97,7 @@
 <@assertEquals actual=obj.mDecimalLoss(1.5) expected="mDecimalLoss(int a1 = 1)" /><#-- Yes, buggy... -->
 <@assertEquals actual=obj.mDecimalLoss(1.5?double) expected="mDecimalLoss(double a1 = 1.5)" />
 
-<#-- BigDecimal conversions chose the smallest target type before IcI 2.3.31, increasing the risk of overflows: -->
+<#-- BigDecimal conversions chose the smallest target type before IcI 2.3.21, increasing the risk of overflows: -->
 <@assertEquals actual=obj.nIntAndLong(1) expected="nIntAndLong(int 1)" />
 <@assertEquals actual=obj.nIntAndLong(1?long) expected="nIntAndLong(long 1)" />
 <@assertEquals actual=obj.nIntAndShort(1) expected="nIntAndShort(short 1)" />