[hotfix] [docs] Typo in JSON declaration

This closes #228.
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 @@
     @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 @@
 
 ## 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" >}}).