You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@freemarker.apache.org by "Johannes Lugmayr (JIRA)" <ji...@apache.org> on 2017/06/13 16:02:00 UTC

[jira] [Created] (FREEMARKER-58) docu: namespaces page: correct mistake in code example

Johannes Lugmayr created FREEMARKER-58:
------------------------------------------

             Summary: docu: namespaces page: correct mistake in code example
                 Key: FREEMARKER-58
                 URL: https://issues.apache.org/jira/browse/FREEMARKER-58
             Project: Apache Freemarker
          Issue Type: Task
            Reporter: Johannes Lugmayr
            Priority: Minor


on 
[http://freemarker.org/docs/dgui_misc_namespace.html]

stands

{code:java}
<#import "/lib/example.ftl" as e>
${my.mail}
<#assign mail="other@example.com" in e>
${my.mail}
{code}

should be
{code:java}
<#import "/lib/example.ftl" as e>
${e.mail}
<#assign mail="other@example.com" in e>
${e.mail}
{code}




--
This message was sent by Atlassian JIRA
(v6.4.14#64029)