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 ed77bd4b618209afc22e133bed30dfa97f815fc9 Author: ddekany <[email protected]> AuthorDate: Sun Jun 22 16:09:27 2025 +0200 (Minor javadoc adjustment) --- freemarker-core/src/main/java/freemarker/core/CFormat.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/freemarker-core/src/main/java/freemarker/core/CFormat.java b/freemarker-core/src/main/java/freemarker/core/CFormat.java index 1b92f607..5509e2a2 100644 --- a/freemarker-core/src/main/java/freemarker/core/CFormat.java +++ b/freemarker-core/src/main/java/freemarker/core/CFormat.java @@ -28,7 +28,8 @@ import freemarker.template.TemplateException; * {@code "c"} and {@code "computer"} {@link Configurable#setNumberFormat(String) number_format}, and * the {@code "c"} {@link Configurable#setBooleanFormat(String) boolean_format}. * A {@link CFormat} currently defines how numbers, booleans, and strings are converted to text that defines a similar - * value in a certain computer language (or other computer-parsed syntax). + * value in a certain computer language (or other computer-parsed syntax). The {@link CFormat} that you want to use can + * be set via {@link Configurable#setCFormat(CFormat)}. * * <p><b>Experimental class!</b> This class is too new, and might will change over time. Therefore, for now * constructor and most methods are not exposed outside FreeMarker, and so you can't create a custom implementation.
