You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by nf...@apache.org on 2023/06/09 12:01:17 UTC

[camel-quarkus] branch main updated: Fix CXF documentation warnings

This is an automated email from the ASF dual-hosted git repository.

nfilotto pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git


The following commit(s) were added to refs/heads/main by this push:
     new e73b060955 Fix CXF documentation warnings
e73b060955 is described below

commit e73b060955f5979c56fa053d7aed62bb3ace1cb3
Author: Nicolas Filotto <nf...@talend.com>
AuthorDate: Fri Jun 9 14:00:51 2023 +0200

    Fix CXF documentation warnings
---
 docs/modules/ROOT/pages/reference/extensions/cxf-soap.adoc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/modules/ROOT/pages/reference/extensions/cxf-soap.adoc b/docs/modules/ROOT/pages/reference/extensions/cxf-soap.adoc
index 6669ee33bf..722817b749 100644
--- a/docs/modules/ROOT/pages/reference/extensions/cxf-soap.adoc
+++ b/docs/modules/ROOT/pages/reference/extensions/cxf-soap.adoc
@@ -163,11 +163,11 @@ public class CxfSoapRoutes extends RouteBuilder {
     public void configure() {
         /* A CXF Service configured through a CDI bean */
         from("cxf:bean:helloBeanEndpoint")
-                .setBody().simple("Hello ${body} from CXF service");
+                .setBody().simple("Hello $\{body} from CXF service");
 
         /* A CXF Service configured through Camel URI parameters */
         from("cxf:///hello-inline?wsdlURL=wsdl/HelloService.wsdl&serviceClass=org.foo.HelloService")
-                        .setBody().simple("Hello ${body} from CXF service");
+                        .setBody().simple("Hello $\{body} from CXF service");
     }
 
     @Produces