Fix wrong function name in the scatter example

This commit is contained in:
Guilherme Torres Castro
2020-05-29 12:22:30 -03:00
committed by Oleg Zhurakousky
parent 45f10809a5
commit 1325d425ff

View File

@@ -912,8 +912,8 @@ public class SampleApplication {
The above example is somewhat of a the opposite from the previous sample and demonstrates function which
takes single input of type `Integer` and produces two outputs (both of type `String`).
So, for the above example the input binding is `gather-in-0` and the
output bindings are `gather-out-0` and `gather-out-1`.
So, for the above example the input binding is `scatter-in-0` and the
output bindings are `scatter-out-0` and `scatter-out-1`.
And you test it with the following code:
[source,java]