From a33aa54a6e15d83ce1a42595b1ca6f814f6ded15 Mon Sep 17 00:00:00 2001 From: Guillaume Smet Date: Wed, 7 Feb 2024 13:40:17 +0100 Subject: [PATCH] Move title attribute to icon Per doc team request. (cherry picked from commit 279a88929aed14db7ff172debd4f69e44291908d) --- .../main/java/io/quarkus/annotation/processor/Constants.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/processor/src/main/java/io/quarkus/annotation/processor/Constants.java b/core/processor/src/main/java/io/quarkus/annotation/processor/Constants.java index d9f2f9ac2fd02..6418a4128edb8 100644 --- a/core/processor/src/main/java/io/quarkus/annotation/processor/Constants.java +++ b/core/processor/src/main/java/io/quarkus/annotation/processor/Constants.java @@ -92,7 +92,7 @@ final public class Constants { public static final String DURATION_NOTE_ANCHOR = String.format("duration-note-anchor-{%s}", SUMMARY_TABLE_ID_VARIABLE); public static final String MEMORY_SIZE_NOTE_ANCHOR = "memory-size-note-anchor"; - public static final String MORE_INFO_ABOUT_TYPE_FORMAT = " link:#%s[icon:question-circle[], title=More information about the %s format]"; + public static final String MORE_INFO_ABOUT_TYPE_FORMAT = " link:#%s[icon:question-circle[title=More information about the %s format]]"; public static final String DURATION_INFORMATION = String.format(Constants.MORE_INFO_ABOUT_TYPE_FORMAT, Constants.DURATION_NOTE_ANCHOR, Duration.class.getSimpleName()); public static final String MEMORY_SIZE_INFORMATION = String.format(Constants.MORE_INFO_ABOUT_TYPE_FORMAT,