Did I ever proof.read the manual?  Example seems to be in the wrong place as well

git-svn-id: https://svn.apache.org/repos/asf/ant/antlibs/compress/trunk@1150117 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/docs/expand.html b/docs/expand.html
index c724e9f..b253b01 100644
--- a/docs/expand.html
+++ b/docs/expand.html
@@ -210,6 +210,30 @@
 </cmp:unzip>
 </pre>
 
+<pre>
+&lt;cmp:unzip src=&quot;${ant.home}/lib/ant.jar&quot;
+    dest=&quot;...&quot; xmlns:cmp="antlib:org.apache.ant.compress"&gt;
+  &lt;patternset&gt;
+    &lt;include name=&quot;images/&quot;/&gt;
+  &lt;/patternset&gt;
+&lt;/cmp:unzip&gt;
+</pre>
+<p>This extracts all images from <tt>ant.jar</tt> which are stored in the <tt>images</tt> directory
+of the Jar (or somewhere under it). While extracting the directory structure (<tt>images</tt>)
+will be taken.</p>
+
+<pre>
+&lt;cmp:unzip src=&quot;${ant.home}/lib/ant.jar&quot;
+    dest=&quot;...&quot; xmlns:cmp="antlib:org.apache.ant.compress"&gt;
+  &lt;patternset&gt;
+    &lt;include name=&quot;**/ant_logo_large.gif&quot;/&gt;
+    &lt;include name=&quot;**/LICENSE.txt&quot;/&gt;
+  &lt;/patternset&gt;
+&lt;/cmp:unzip&gt;
+</pre>
+<p>This extracts the two files <tt>ant_logo_large.gif</tt> and <tt>LICENSE.txt</tt> from the
+<tt>ant.jar</tt>. More exactly: it extracts all files with these names from anywhere in the source file. While extracting the directory structure will be taken.</p>
+
 <h3>Related tasks</h3>
 
 <pre>
@@ -249,29 +273,5 @@
 </pre>
 <p>&quot;Deletes&quot; files from a zipfile.</p>
 
-<pre>
-&lt;cmp:unzip src=&quot;${ant.home}/lib/ant.jar&quot;
-    dest=&quot;...&quot; xmlns:cmp="antlib:org.apache.ant.compress"&gt;
-  &lt;patternset&gt;
-    &lt;include name=&quot;images/&quot;/&gt;
-  &lt;/patternset&gt;
-&lt;/cmp:unzip&gt;
-</pre>
-<p>This extracts all images from <tt>ant.jar</tt> which are stored in the <tt>images</tt> directory
-of the Jar (or somewhere under it). While extracting the directory structure (<tt>images</tt>)
-will be taken.</p>
-
-<pre>
-&lt;cmp:unzip src=&quot;${ant.home}/lib/ant.jar&quot;
-    dest=&quot;...&quot; xmlns:cmp="antlib:org.apache.ant.compress"&gt;
-  &lt;patternset&gt;
-    &lt;include name=&quot;**/ant_logo_large.gif&quot;/&gt;
-    &lt;include name=&quot;**/LICENSE.txt&quot;/&gt;
-  &lt;/patternset&gt;
-&lt;/cmp:unzip&gt;
-</pre>
-<p>This extracts the two files <tt>ant_logo_large.gif</tt> and <tt>LICENSE.txt</tt> from the
-<tt>ant.jar</tt>. More exactly: it extracts all files with these names from anywhere in the source file. While extracting the directory structure will be taken.</p>
-
 </body>
 </html>