Skip to content

Commit

Permalink
Javadoc
Browse files Browse the repository at this point in the history
Use HTML 'em' tag instead of 'i' tag
garydgregory committed Jul 21, 2024
1 parent fb49fa9 commit f00bfaa
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/main/java/org/apache/commons/jexl3/JexlArithmetic.java
Original file line number Diff line number Diff line change
@@ -1827,7 +1827,7 @@ public Object shiftRightUnsigned(final Object left, final Object right) {
* Calculate the <code>size</code> of various types: Collection, Array, Map, String.
*
* @param object the object to get the size of
* @return the <i>size</i> of object, 0 if null, 1 if there is no <i>better</i> solution
* @return the <em>size</em> of object, 0 if null, 1 if there is no <em>better</em> solution
*/
public Integer size(final Object object) {
return size(object, object == null ? 0 : 1);
4 changes: 2 additions & 2 deletions src/main/java/org/apache/commons/jexl3/package-info.java
Original file line number Diff line number Diff line change
@@ -278,8 +278,8 @@
* assertEquals(Double.valueOf(-1),o);
* </code></pre>
* <p>
* If the <i>namespace</i> is a Class and that class declares a constructor that takes a JexlContext (or
* a class extending JexlContext), one <i>namespace</i> instance is created on first usage in an
* If the <em>namespace</em> is a Class and that class declares a constructor that takes a JexlContext (or
* a class extending JexlContext), one <em>namespace</em> instance is created on first usage in an
* expression; this instance lifetime is limited to the expression evaluation.
* </p>
* <p>
Original file line number Diff line number Diff line change
@@ -22,7 +22,7 @@
public class TokenMgrException extends RuntimeException implements JavaccError {
/**
* The version identifier for this Serializable class.
* Increment only if the <i>serialized</i> form of the
* Increment only if the <em>serialized</em> form of the
* class changes.
*/
private static final long serialVersionUID = 1L;

0 comments on commit f00bfaa

Please sign in to comment.