diff --git a/docs/index.html b/docs/index.html index ea12f3b08..c17406588 100644 --- a/docs/index.html +++ b/docs/index.html @@ -664,7 +664,7 @@ They are: If you do not want these default excludes applied, you may disable them with the defaultexcludes="no" attribute.

PatternSets

-

Patterns can be group to sets and later be referenced by their id +

Patterns can be grouped to sets and later be referenced by their id attribute. They are defined via a patternset element - which can currently only appear nested into a FileSet or a directory based task that constitutes @@ -4414,7 +4414,8 @@ main: BUILD SUCCESSFUL -

Another example, using references by id.

+

Another example, using references by id +and two different scripting languages:

 <project name="testscript" default="main">
   <target name="sub">
@@ -4422,9 +4423,9 @@ BUILD SUCCESSFUL
   </target>
 
   <target name="sub1">
-    <script language="javascript"><![CDATA[
-      theEcho.setMessage("In sub1");
-      sub.execute();
+    <script language="netrexx"><![CDATA[
+      theEcho.setMessage("In sub1")
+      sub.execute
     ]]></script>
   </target>