You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Dmitri Blinov (JIRA)" <ji...@apache.org> on 2015/07/09 10:03:04 UTC

[jira] [Created] (JEXL-160) typo in package.html

Dmitri Blinov created JEXL-160:
----------------------------------

             Summary: typo in package.html
                 Key: JEXL-160
                 URL: https://issues.apache.org/jira/browse/JEXL-160
             Project: Commons JEXL
          Issue Type: Improvement
    Affects Versions: 3.0
            Reporter: Dmitri Blinov
            Priority: Trivial


Package.html incorrectly describes routine to create Unified Expressions as
....
JexlEngine jexl = new JexlBuilder().create();
JxltEngine jxlt = jexl.jxlt();
....

The correct pattern is 
....
JexlEngine jexl = new JexlBuilder().create();
JxltEngine jxlt = jexl.createJxltEngine();
.....



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)