fixed broken XML entities
no needs of having a separate section

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/digester/trunk@1186012 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/src/site/xdoc/guide/async.xml b/src/site/xdoc/guide/async.xml
index c07ec76..82454bc 100644
--- a/src/site/xdoc/guide/async.xml
+++ b/src/site/xdoc/guide/async.xml
@@ -35,8 +35,7 @@
       </ul>
       <p><strong>Note</strong> keep always in mind the every single <code>Digester</code> instance is NOT thread-safety,
       so please use the <i>asynchronous</i> feature carefully!!!</p>
-    </section>
-    <section name="Async in action">
+
       <subsection name="Using Digester Loader">
         <p>First of all, setup the <code>DigesterLoader</code> with <code>java.util.concurrent.ExecutorService</code>:</p>
         <source>final DigesterLoader digesterLoader = newLoader( new AbstractRulesModule()
@@ -53,7 +52,7 @@
         <p>Then create the Digester and run the <code>parse</code> method asynchronously:</p>
         <source>Digester digester = digesterLoader.newDigester();
 ...
-Future&ltEmployee&gt; future = digester.asyncParse( new URL( "http://my.rest.server/employees/10" ) );</source>
+Future&lt;Employee&gt; future = digester.asyncParse( new URL( "http://my.rest.server/employees/10" ) );</source>
       </subsection>
 
       <subsection name="Using directly with the Digester">
@@ -64,7 +63,7 @@
 digester.setExecutorService( java.util.concurrent.Executors.newFixedThreadPool( 10 ) );
 </source>
         <p>Then run the <code>parse</code> method asynchronously:</p>
-        <source>Future&ltEmployee&gt; future = digester.asyncParse( new URL( "http://my.rest.server/employees/10" ) );</source>
+        <source>Future&lt;Employee&gt; future = digester.asyncParse( new URL( "http://my.rest.server/employees/10" ) );</source>
       </subsection>
     </section>
   </body>