Skip to content

Commit

Permalink
Javadoc
Browse files Browse the repository at this point in the history
Normalize spelling
  • Loading branch information
garydgregory committed Nov 26, 2023
1 parent d013752 commit ced89f5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
import org.apache.commons.collections4.OrderedIterator;

/**
* A {@code List} implementation that is optimised for fast insertions and
* A {@code List} implementation that is optimized for fast insertions and
* removals at any index in the list.
* <p>
* This list implementation utilises a tree structure internally to ensure that
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
* <p>
* The following implementations are provided in the package:
* <ul>
* <li>TreeList - a list that is optimised for insertions and removals at any index in the list</li>
* <li>TreeList - a list that is optimized for insertions and removals at any index in the list</li>
* <li>CursorableLinkedList - a list that can be modified while the listIterator (cursor) is being used</li>
* <li>NodeCachingLinkedList - a linked list that caches the storage nodes for a performance gain</li>
* </ul>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ protected AbstractInputCheckedMapDecorator(final Map<K, V> map) {
* Hook method called to determine if {@code checkSetValue} has any effect.
* <p>
* An implementation should return false if the {@code checkSetValue} method
* has no effect as this optimises the implementation.
* has no effect as this optimizes the implementation.
* <p>
* This implementation returns {@code true}.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import org.junit.jupiter.api.Test;

/**
* Test class for NodeCachingLinkedList, a performance optimised LinkedList.
* Test class for NodeCachingLinkedList, a performance optimized LinkedList.
*/
public class NodeCachingLinkedListTest<E> extends AbstractLinkedListTest<E> {

Expand Down

0 comments on commit ced89f5

Please sign in to comment.