You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by he...@apache.org on 2020/11/29 16:47:47 UTC

[commons-jexl] branch master updated: JEXL-339 : - Fixed example syntax

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

henrib pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-jexl.git


The following commit(s) were added to refs/heads/master by this push:
     new 687c59d  JEXL-339 : - Fixed example syntax
687c59d is described below

commit 687c59d3d085cbc2707843d4ec6b4b773ef53151
Author: henrib <he...@apache.org>
AuthorDate: Sun Nov 29 17:47:14 2020 +0100

    JEXL-339 :
    - Fixed example syntax
---
 src/site/xdoc/reference/examples.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/site/xdoc/reference/examples.xml b/src/site/xdoc/reference/examples.xml
index b58e788..5aecd14 100644
--- a/src/site/xdoc/reference/examples.xml
+++ b/src/site/xdoc/reference/examples.xml
@@ -62,7 +62,7 @@
         The common way of using a JEXL engine is to create it as a singleton and use this opportunity to tailor its
         behavior and cache through the jexlBuilder options.
         <source>
-            private static final JexlEngine jexl = new JexlBuilder.cache(512).strict(true).silent(false).create();
+            private static final JexlEngine jexl = new JexlBuilder().cache(512).strict(true).silent(false).create();
         </source>
       </p>
       <p>