You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tika.apache.org by ju...@apache.org on 2008/09/27 23:10:28 UTC

svn commit: r699740 - /incubator/tika/trunk/src/site/apt/documentation.apt

Author: jukka
Date: Sat Sep 27 14:10:28 2008
New Revision: 699740

URL: http://svn.apache.org/viewvc?rev=699740&view=rev
Log:
Fix typo, merge paragraphs. 

Modified:
    incubator/tika/trunk/src/site/apt/documentation.apt

Modified: incubator/tika/trunk/src/site/apt/documentation.apt
URL: http://svn.apache.org/viewvc/incubator/tika/trunk/src/site/apt/documentation.apt?rev=699740&r1=699739&r2=699740&view=diff
==============================================================================
--- incubator/tika/trunk/src/site/apt/documentation.apt (original)
+++ incubator/tika/trunk/src/site/apt/documentation.apt Sat Sep 27 14:10:28 2008
@@ -23,7 +23,7 @@
 
 The Parser interface
 
-   The {{{apidocs/org/apache/tika/parser/Parser.html}org.apache.tika.parser.Parser}
+   The {{{apidocs/org/apache/tika/parser/Parser.html}org.apache.tika.parser.Parser}}
    interface is the key concept of Apache Tika. It hides the complexity of
    different file formats and parsing libraries while providing a simple and
    powerful mechanism for client applications to extract structured text
@@ -108,10 +108,8 @@
 
    The XHTML SAX events produced by the parser implementation are sent to a
    {{{http://java.sun.com/j2se/1.5.0/docs/api/org/xml/sax/ContentHandler.html}ContentHandler}}
-   instance given to the <<<parse>>> method.
-
-   If this the content handler fails to process an event, then parsing stops
-   and the thrown
+   instance given to the <<<parse>>> method. If this the content handler
+   fails to process an event, then parsing stops and the thrown
    {{{http://java.sun.com/j2se/1.5.0/docs/api/org/xml/sax/SAXException.html}SAXException}}
    is passed up to the client application.