davsclaus commented on code in PR #25807: URL: https://github.com/apache/camel/pull/25807#discussion_r3878679806
########## docs/user-manual/modules/ROOT/pages/backlog-debugger.adoc: ########## @@ -43,8 +43,8 @@ NOTE: This requires to enabled JMX by including `camel-management` JAR in the cl |`dumpTracedMessagesAsXml(nodeId, boolean)` |`String` |To dump the debugged messages from the give node id in XML format, optionally including the exchange properties. |`enableBreakpoint(nodeId)` |`void` |To activate a breakpoint which has been disabled. |`enableDebugger` |`void` |To enable the debugger -|`evaluateExpressionAtBreakpoint(nodeId, language, expression)` | `String`|To evaluate an expression in any supported language (e.g. Simple, CSimple, etc.) and convert the result to String -|`evaluateExpressionAtBreakpoint(nodeId, language, expression, resultType)` | `Object`|To evaluate an expression in any supported language (e.g. Simple, CSimple, etc.) and return the result as a given result type +|`evaluateExpressionAtBreakpoint(nodeId, language, expression)` | `String`|To evaluate an expression in any supported language (e.g. Simple, etc.) and convert the result to String +|`evaluateExpressionAtBreakpoint(nodeId, language, expression, resultType)` | `Object`|To evaluate an expression in any supported language (e.g. Simple, etc.) and return the result as a given result type Review Comment: Minor/cosmetic: with only one example language left before removing CSimple, "(e.g. Simple, etc.)" reads a bit awkwardly. Consider dropping "etc." or naming a second example language. ```suggestion |`evaluateExpressionAtBreakpoint(nodeId, language, expression)` | `String`|To evaluate an expression in any supported language (e.g. Simple) and convert the result to String |`evaluateExpressionAtBreakpoint(nodeId, language, expression, resultType)` | `Object`|To evaluate an expression in any supported language (e.g. Simple) and return the result as a given result type ``` -- 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]
