Skip to content

Commit

Permalink
Fix weird formatting in missing guide warnings
Browse files Browse the repository at this point in the history
We don't want this:

> Guide Guide{url=https://cn.quarkus.io/guides/extension-faq} is ignored since we were not able to find an HTML content file for it.

"Guide" is repeated, that's weird.

We want this:

> Guide{url=https://cn.quarkus.io/guides/extension-faq} is ignored since we were not able to find an HTML content file for it.
  • Loading branch information
yrodiere committed Nov 8, 2024
1 parent 44eb21e commit b2dcc8f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -565,7 +565,7 @@ private Guide createCoreGuide(GitCloneDirectory cloneDirectory, String quarkusVe
// So if it's missing, that's important context when investigating other errors.
failureCollector.info(
FailureCollector.Stage.TRANSLATION,
"Guide " + guide + " is ignored since we were not able to find an HTML content file for it.");
guide + " is ignored since we were not able to find an HTML content file for it.");
return null;
}

Expand Down

0 comments on commit b2dcc8f

Please sign in to comment.