essobedo commented on code in PR #8676:
URL: https://github.com/apache/camel/pull/8676#discussion_r1015150513
##########
docs/user-manual/modules/ROOT/pages/rest-dsl.adoc:
##########
@@ -117,13 +117,13 @@ And using XML DSL it becomes:
[source,xml]
----
<rest path="/customers/">
- <get uri="/{id}">
+ <get path="/{id}">
<to uri="direct:customerDetail"/>
</get>
- <get uri="/{id}/orders">
+ <get path="/{id}/orders">
<to uri="direct:customerOrders"/>
</get>
- <post uri="/neworder">
+ <post path=i="/neworder">
Review Comment:
```suggestion
<post path="/neworder">
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]