From 3c9344487c863f60c1bf531a02491044f14e30ef Mon Sep 17 00:00:00 2001 From: Julien Viet Date: Sat, 22 Jun 2019 12:07:37 +0200 Subject: [PATCH] Fix invalid doc --- src/main/asciidoc/override/json.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/asciidoc/override/json.adoc b/src/main/asciidoc/override/json.adoc index 5ef80a2d1..8f3d263c5 100644 --- a/src/main/asciidoc/override/json.adoc +++ b/src/main/asciidoc/override/json.adoc @@ -121,9 +121,9 @@ You use {@link io.vertx.core.json.JsonArray#encode} to encode the array to a Str Creating JSON object and array assumes you are using valid string representation. -When you are unsure of the string validity then you should use instead `{@link io.vertx.core.Json#decodeValue(java.lang.String)}` +When you are unsure of the string validity then you should use instead `{@link io.vertx.core.json.Json#decodeValue(java.lang.String)}` [source,java] ---- -{@link docoverride.json.Examples#example0_1_decode} +{@link docoverride.json.Examples#example5} ----