From 29c792a4c775d5152d52fd0729d36d160dd64174 Mon Sep 17 00:00:00 2001 From: Gregor Gottschewski <85785843+Gregor-Gottschewski@users.noreply.github.com> Date: Sat, 10 Feb 2024 18:10:51 +0100 Subject: [PATCH] Fix typo in Java Doc --- api/src/main/java/jakarta/json/Json.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/main/java/jakarta/json/Json.java b/api/src/main/java/jakarta/json/Json.java index 373ab4c5..3f47967f 100644 --- a/api/src/main/java/jakarta/json/Json.java +++ b/api/src/main/java/jakarta/json/Json.java @@ -255,7 +255,7 @@ public static JsonArrayBuilder createArrayBuilder(JsonArray array) { /** * Creates a JSON array builder, initialized with the content of specified {@code collection}. - * If the @{code collection} contains {@link Optional}s then resulting JSON array builder + * If the {@code collection} contains {@link Optional}s then resulting JSON array builder * contains the value from the {@code collection} only if the {@link Optional} is not empty. * * @param collection the initial data for the builder