You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@freemarker.apache.org by dd...@apache.org on 2017/03/25 10:52:55 UTC

[02/10] incubator-freemarker git commit: Fixed typo in the Manual

Fixed typo in the Manual


Project: http://git-wip-us.apache.org/repos/asf/incubator-freemarker/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-freemarker/commit/499d2eb0
Tree: http://git-wip-us.apache.org/repos/asf/incubator-freemarker/tree/499d2eb0
Diff: http://git-wip-us.apache.org/repos/asf/incubator-freemarker/diff/499d2eb0

Branch: refs/heads/2.3
Commit: 499d2eb0de641687b11a56744562aa200fc427b1
Parents: cd26840
Author: ddekany <dd...@apache.org>
Authored: Sat Mar 25 11:16:23 2017 +0100
Committer: ddekany <dd...@apache.org>
Committed: Sat Mar 25 11:16:23 2017 +0100

----------------------------------------------------------------------
 src/manual/en_US/book.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-freemarker/blob/499d2eb0/src/manual/en_US/book.xml
----------------------------------------------------------------------
diff --git a/src/manual/en_US/book.xml b/src/manual/en_US/book.xml
index 628f495..84c513e 100644
--- a/src/manual/en_US/book.xml
+++ b/src/manual/en_US/book.xml
@@ -3122,7 +3122,7 @@ CDEF</programlisting>
             sequence (<literal><replaceable>seq</replaceable></literal>) whose
             indexes are in the range. For example:</para>
 
-            <programlisting role="template">&lt;#assert seq = ["A", "B", "C", "D", "E"]&gt;
+            <programlisting role="template">&lt;#assign seq = ["A", "B", "C", "D", "E"]&gt;
 &lt;#list seq[1..3] as i&gt;${i}&lt;/#list&gt;</programlisting>
 
             <para>will print</para>