Skip to content

Commit

Permalink
docs: fix javadocs errors
Browse files Browse the repository at this point in the history
  • Loading branch information
danielpeintner committed Sep 5, 2023
1 parent ee9dcf2 commit 56be588
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions src/main/java/com/siemens/ct/exi/main/api/sax/package.html
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<html>
<head>
<!--
@(#)package.html
Copyright (C) 2007, 2008 Siemens AG
<!--
@(#)package.html
Copyright (C) 2007, 2008 Siemens AG
-->
</head>
<body bgcolor="white">
Expand All @@ -17,7 +17,7 @@ <h2>Package Specification</h2>
A parser which implements SAX (ie, a SAX Parser) functions as a stream
parser, with an event-driven API.

<code><pre>
<code>
// encode
EXIResult saxResult = new EXIResult( ... );
XMLReader parser = XMLReaderFactory.createXMLReader();
Expand All @@ -31,7 +31,7 @@ <h2>Package Specification</h2>
InputSource is = new InputSource( ... );
xmlReader.parse ( is );

</pre></code>
</code>

<h2>Related Documentation</h2>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,11 @@ public class NBitUnsignedIntegerTest extends AbstractTestCase {

/**
* Returns the least number of bits that is needed to represent the int
* <param>n</param>. Returns 1 if <param>n</param> is 0.
* <code>n</code>. Returns 1 if <code>n</code> is 0.
*
* @param n
* Integer value. If <param>n</param> is negative it is
* interpreted as a unsigned int. Thus, for every n < 0 we have
* Integer value. If <code>n</code> is negative it is
* interpreted as a unsigned int. Thus, for every n &lt; 0 we have
* log2Ceil(n) = 32.
*
*/
Expand Down

0 comments on commit 56be588

Please sign in to comment.