Skip to content
This repository was archived by the owner on Aug 31, 2022. It is now read-only.

Commit 106645b

Browse files
committed
javadoc fixes
1 parent d2f6524 commit 106645b

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

workflow/src/main/java/io/rouz/task/TaskContext.java

+3
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,9 @@ default <T> Value<T> immediateValue(T value) {
9696
* of a {@link List}.
9797
*
9898
* The semantics of joining {@link Value}s is decided by this {@link TaskContext}.
99+
*
100+
* @param <T> The inner type of the values
101+
* @return A collector for a stream of values
99102
*/
100103
default <T> Collector<Value<T>, ?, Value<List<T>>> toValueList() {
101104
return Collector.of(

workflow/src/main/java/io/rouz/task/dsl/TaskBuilder.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
/**
1414
* Types for the fluent task setup API
1515
*
16-
* The entry point for this api is {@link Task#ofType(Class)}.
16+
* The entry point for this api is {@link Task#named(String, Object...)}}.
1717
*
1818
* Note, the inner types should never have to explicitly be mentioned or imported. The API is
1919
* supposed to be used through fluent calls that eventually lead to a {@link Task} instance.

0 commit comments

Comments
 (0)