Skip to content

Commit

Permalink
Fix org.eclipse.collections.api.list api doc incorrect . #612
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Dias <daniel.dias.analistati@gmail.com>
  • Loading branch information
Daniel-Dos committed Nov 7, 2018
1 parent 7f28ca7 commit 2ca48ed
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/**
* This package contains interfaces for list API which enhance the performance and functionality of {@link java.util.List}.
* <p>
* This package contains 4 interfaces:
* This package contains 5 interfaces:
* <ul>
* <li>
* {@link org.eclipse.collections.api.list.ListIterable} - an {@link java.lang.Iterable} which contains items that are ordered and may be accessed directly by index.
Expand All @@ -25,6 +25,9 @@
* <li>
* {@link org.eclipse.collections.api.list.FixedSizeList} - a list that may be mutated, but cannot grow or shrink in size.
* </li>
* <li>
* {@link org.eclipse.collections.api.list.ParallelListIterable} - a {@link org.eclipse.collections.api.RichIterable} which will defer evaluation for certain methods like select, reject, collect, etc. When evaluation occurs it is in parallel.
* </li>
* </ul>
*/
package org.eclipse.collections.api.list;

0 comments on commit 2ca48ed

Please sign in to comment.