This is an automated email from the ASF dual-hosted git repository. tzulitai pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/flink-statefun.git
commit 3edff6119ed74864565b39e5337127731bce1b23 Author: RocMarshal <[email protected]> AuthorDate: Wed Dec 2 10:29:21 2020 +0800 [hotfix][sdk] Correct spelling of wrong words. This closes #183. --- .../java/org/apache/flink/statefun/sdk/spi/StatefulFunctionModule.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/statefun-sdk/src/main/java/org/apache/flink/statefun/sdk/spi/StatefulFunctionModule.java b/statefun-sdk/src/main/java/org/apache/flink/statefun/sdk/spi/StatefulFunctionModule.java index b47e224..44efefd 100644 --- a/statefun-sdk/src/main/java/org/apache/flink/statefun/sdk/spi/StatefulFunctionModule.java +++ b/statefun-sdk/src/main/java/org/apache/flink/statefun/sdk/spi/StatefulFunctionModule.java @@ -106,7 +106,7 @@ public interface StatefulFunctionModule { * * @param id the id of the ingress to bind the router to. * @param router the router to bind. - * @param <T> the type of messages that is bbeing routed. + * @param <T> the type of messages that is being routed. */ <T> void bindIngressRouter(IngressIdentifier<T> id, Router<T> router); }
