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 e8374885524386879d6db7732c8df5365054b156 Author: George Birbilis <[email protected]> AuthorDate: Sat Apr 17 15:18:49 2021 +0300 [hotfix] [docs] Typo in JSON declaration This closes #228. --- docs/content/docs/sdk/java.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/content/docs/sdk/java.md b/docs/content/docs/sdk/java.md index 4a1ca67..62ef072 100644 --- a/docs/content/docs/sdk/java.md +++ b/docs/content/docs/sdk/java.md @@ -123,7 +123,7 @@ public class User { @JsonCreator public User( @JsonProperty("name") String name, - @JsonProperty("favorite_color" String favoriteColor)) { + @JsonProperty("favorite_color") String favoriteColor) { this.name = Objects.requireNonNull(name); this.favoriteColor = Objects.requireNonNull(favoriteColor); @@ -443,4 +443,4 @@ public class UndertowMain { ## Next Steps -Keep learning with information on setting up [I/O modules]({{< ref "docs/io-module/overview" >}}) and configuring the [Stateful Functions runtime]({{< ref "docs/deployment/overview" >}}). \ No newline at end of file +Keep learning with information on setting up [I/O modules]({{< ref "docs/io-module/overview" >}}) and configuring the [Stateful Functions runtime]({{< ref "docs/deployment/overview" >}}).
