Normalize spelling
This commit is contained in:
Gary Gregory 2023-11-26 14:59:39 -05:00
parent d0137526d1
commit ced89f524f
4 changed files with 4 additions and 4 deletions

View File

@ -30,7 +30,7 @@ import org.apache.commons.collections4.CollectionUtils;
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

View File

@ -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>

View File

@ -86,7 +86,7 @@ abstract class AbstractInputCheckedMapDecorator<K, V>
* 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}.
*

View File

@ -22,7 +22,7 @@ import java.util.LinkedList;
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> {