Skip to content

Commit

Permalink
#70: javadoc fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Jun 2, 2017
1 parent 8ab17db commit 0636634
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/main/java/org/cactoos/func/AlwaysTrueFunc.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
* new AllOf(
* new IterableAsBooleans<String>(
* Collections.emptyList(),
* new AlwaysTrueFunc<>(list::add)
* new AlwaysTrueFunc&lt;&gt;(list::add)
* )
* ).asValue();
* </pre>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/cactoos/func/FuncAsCallable.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
* {@link Callable} is required, but you just have a function:</p>
*
* <pre> Callable&lt;String&gt; callable = new FuncAsCallable&lt;&gt;(
* i -> "Hello, world!"
* i -&gt; "Hello, world!"
* );
* </pre>
*
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/cactoos/list/FilteredIterable.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
* new ArrayAsIterable&lt;&gt;(
* "hey", "hello", "world"
* ),
* input -> input.length() > 4
* input -&gt; input.length() &gt; 4
* );
* </pre>
*
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/cactoos/list/FilteredIterator.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
* new ArrayAsIterable&lt;&gt;(
* "hey", "hello", "world"
* ).iterator(),
* input -> input.length() > 4
* input -&gt; input.length() &gt; 4
* );
* </pre>
*
Expand Down

0 comments on commit 0636634

Please sign in to comment.