Author: ltheussl Date: Mon Mar 2 11:09:23 2009 New Revision: 749269 URL: http://svn.apache.org/viewvc?rev=749269&view=rev Log: Fix javadoc
Modified: maven/doxia/doxia/trunk/doxia-core/src/main/java/org/apache/maven/doxia/parser/XhtmlBaseParser.java Modified: maven/doxia/doxia/trunk/doxia-core/src/main/java/org/apache/maven/doxia/parser/XhtmlBaseParser.java URL: http://svn.apache.org/viewvc/maven/doxia/doxia/trunk/doxia-core/src/main/java/org/apache/maven/doxia/parser/XhtmlBaseParser.java?rev=749269&r1=749268&r2=749269&view=diff ============================================================================== --- maven/doxia/doxia/trunk/doxia-core/src/main/java/org/apache/maven/doxia/parser/XhtmlBaseParser.java (original) +++ maven/doxia/doxia/trunk/doxia-core/src/main/java/org/apache/maven/doxia/parser/XhtmlBaseParser.java Mon Mar 2 11:09:23 2009 @@ -510,21 +510,21 @@ * Make sure sections are nested consecutively. * * <p> - * HTML doesn't have any sections, only sectionTitles (<h2>, etc), that means we have to + * HTML doesn't have any sections, only sectionTitles (<h2> etc), that means we have to * open close any sections that are missing in between. * </p> * * <p> * For instance, if the following sequence is parsed: * <pre> - * <h3></h3> - * <h6></h6> + * <h3></h3> + * <h6></h6> * </pre> * we have to insert two section starts before we open the <code><h6></code>. * In the following sequence * <pre> - * <h6></h6> - * <h3></h3> + * <h6></h6> + * <h3></h3> * </pre> * we have to close two sections before we open the <code><h3></code>. * </p>