Skip to content

Commit

Permalink
Better Javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Dec 17, 2023
1 parent 6bc2565 commit beae5e1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ public Iterator<E> createIterator() {

/**
* Tests two sets for equality as per the {@code equals()} contract
* in {@link java.util.Set#equals(java.lang.Object)}.
* in {@link java.util.Set#equals(Object)}.
* <p>
* This method is useful for implementing {@code Set} when you cannot
* extend AbstractSet. The method takes Collection instances to enable other
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
* <li>Null - always returns null
* <li>NOP - returns the input object, which should be immutable
* <li>Exception - always throws an exception
* <li>StringValue - returns a {@code java.lang.String} representation of the input object
* <li>StringValue - returns a {@link String} representation of the input object
* </ul>
* <p>
* Since v4.1 only transformers which are considered to be safe are
Expand Down Expand Up @@ -470,7 +470,7 @@ public static <I, O> Transformer<I, O> invokerTransformer(final String methodNam
}

/**
* Gets a transformer that returns a {@code java.lang.String}
* Gets a transformer that returns a {@link String}
* representation of the input object. This is achieved via the
* {@code toString} method, {@code null} returns 'null'.
*
Expand Down

0 comments on commit beae5e1

Please sign in to comment.