Skip to content

Commit

Permalink
Fix minor issues in guide.md.
Browse files Browse the repository at this point in the history
Signed-off-by: Donald Raab <Donald.Raab@gs.com>
  • Loading branch information
Donald Raab authored and Donald Raab committed Oct 10, 2016
1 parent 746055b commit 9b5c2f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ These Eclipse Collections methods implement the Collect pattern:

##### collect(Function): RichIterable

For each element of the collection, the [**Function**](http://www.eclipse.org/collections/javadoc/8.0.0/org/eclipse/collections/api/block/function/Function.html) is evaluated with the current element as the argument; returns a new collection of the same size and the transformed type.
For each element of the collection, the [**Function**](http://www.eclipse.org/collections/javadoc/8.0.0/org/eclipse/collections/api/block/function/Function.html) is evaluated with the current element as the argument; returns a new collection with the transformed type.

##### collectInt(IntFunction): IntIterable

Expand Down Expand Up @@ -551,8 +551,8 @@ for (int i = 0; i < list.size(); i++)
{
return v;
}
return null;
}
return null;
```
#### []()Detect methods
Expand Down

0 comments on commit 9b5c2f4

Please sign in to comment.