From bf32311d8cb3a2553d91877d4a8291a633b5682e Mon Sep 17 00:00:00 2001 From: Mark Paluch Date: Thu, 17 Oct 2024 11:09:45 +0200 Subject: [PATCH] Escape property placeholder in reference docs. Now it is no longer evaluated as variable. See #2956 --- src/main/antora/modules/ROOT/pages/appendix/custom-queries.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/antora/modules/ROOT/pages/appendix/custom-queries.adoc b/src/main/antora/modules/ROOT/pages/appendix/custom-queries.adoc index 55171bc4c..d4132a40e 100644 --- a/src/main/antora/modules/ROOT/pages/appendix/custom-queries.adoc +++ b/src/main/antora/modules/ROOT/pages/appendix/custom-queries.adoc @@ -519,4 +519,4 @@ Spring's property placeholders can be used in custom queries inside `${}`. include::example$documentation/repositories/domain_events/ARepository.java[tags=property-placeholder] ---- -In the example above, if the property `foo` would be set to `bar` then the `${foo}` block would be resolved to `bar`. \ No newline at end of file +In the example above, if the property `foo` would be set to `bar` then the `$\{foo\}` block would be resolved to `bar`.