[
https://issues.apache.org/jira/browse/FREEMARKER-58?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Johannes Lugmayr updated FREEMARKER-58:
---------------------------------------
Description:
on
[http://freemarker.org/docs/dgui_misc_namespace.html]
is written
{code:java}
<#import "/lib/example.ftl" as e>
${my.mail}
<#assign mail="[email protected]" in e>
${my.mail}
{code}
should be
{code:java}
<#import "/lib/example.ftl" as e>
${e.mail}
<#assign mail="[email protected]" in e>
${e.mail}
{code}
was:
on
[http://freemarker.org/docs/dgui_misc_namespace.html]
stands
{code:java}
<#import "/lib/example.ftl" as e>
${my.mail}
<#assign mail="[email protected]" in e>
${my.mail}
{code}
should be
{code:java}
<#import "/lib/example.ftl" as e>
${e.mail}
<#assign mail="[email protected]" in e>
${e.mail}
{code}
> 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]
> is written
> {code:java}
> <#import "/lib/example.ftl" as e>
> ${my.mail}
> <#assign mail="[email protected]" in e>
> ${my.mail}
> {code}
> should be
> {code:java}
> <#import "/lib/example.ftl" as e>
> ${e.mail}
> <#assign mail="[email protected]" in e>
> ${e.mail}
> {code}
--
This message was sent by Atlassian JIRA
(v6.4.14#64029)