You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@opennlp.apache.org by jo...@apache.org on 2011/01/31 14:49:13 UTC

svn commit: r1065615 - /incubator/opennlp/trunk/opennlp-docs/src/docbkx/namefinder.xml

Author: joern
Date: Mon Jan 31 13:49:12 2011
New Revision: 1065615

URL: http://svn.apache.org/viewvc?rev=1065615&view=rev
Log:
No jira, removed empty line from program listing.

Modified:
    incubator/opennlp/trunk/opennlp-docs/src/docbkx/namefinder.xml

Modified: incubator/opennlp/trunk/opennlp-docs/src/docbkx/namefinder.xml
URL: http://svn.apache.org/viewvc/incubator/opennlp/trunk/opennlp-docs/src/docbkx/namefinder.xml?rev=1065615&r1=1065614&r2=1065615&view=diff
==============================================================================
--- incubator/opennlp/trunk/opennlp-docs/src/docbkx/namefinder.xml (original)
+++ incubator/opennlp/trunk/opennlp-docs/src/docbkx/namefinder.xml Mon Jan 31 13:49:12 2011
@@ -116,8 +116,7 @@ finally {
 			After the model is loaded the NameFinderME can be instantiated.
 			<programlisting language="java">
 				<![CDATA[
-NameFinderME nameFinder = new NameFinderME(model);
-				]]>
+NameFinderME nameFinder = new NameFinderME(model);]]>
 			</programlisting>
 			The initialization is now finished and the Name Finder can be used. The NameFinderME class is not thread safe, it must only be called from one thread. To use multiple threads multiple NameFinderME instances sharing the same model instance can be created.
 			The input text should be segmented into documents, sentences and tokens.