A single greeting step configured with TWO plugins registered together, in order: first a faulty plugin whose
* every exercised hook (invocation-start, operation-start, attempt-start, attempt-end, operation-end, invocation-end)
- * logs a record then throws, then a healthy plugin that logs the corresponding six records normally. The SDK's {@code
- * PluginRunner} isolates each plugin at every hook boundary (swallows the faulty plugin's exceptions), so the healthy
- * plugin still receives every hook and the execution result/history are identical to running without the faulty
+ * logs a record then throws, then a healthy plugin that logs the corresponding six records normally. The SDK's
+ * {@code PluginRunner} isolates each plugin at every hook boundary (swallows the faulty plugin's exceptions), so the
+ * healthy plugin still receives every hook and the execution result/history are identical to running without the faulty
* plugin. Attempt boundaries are the real user-function hooks ({@code onUserFunctionStart}/{@code onUserFunctionEnd},
* filtered to step attempts); the healthy attempt-end reports the SDK's real success/failure outcome.
*/
diff --git a/conformance-tests/src/main/java/plugin/PluginParallelBranchHooks.java b/conformance-tests/src/main/java/plugin/PluginParallelBranchHooks.java
index f4292c447..4931c2e3b 100644
--- a/conformance-tests/src/main/java/plugin/PluginParallelBranchHooks.java
+++ b/conformance-tests/src/main/java/plugin/PluginParallelBranchHooks.java
@@ -20,8 +20,8 @@
*
*
A parallel operation named "parallel" with two branches (max-concurrency 1, so they run sequentially in index
* order); each branch returns a constant directly. The plugin, filtering to parallel-branch operations, logs fn-start
- * and fn-end (with outcome) from the real user-function hooks, carrying the branch operation id and the parallel
- * parent id. These hooks run on the branch's own thread, so start-before-end order per branch is deterministic.
+ * and fn-end (with outcome) from the real user-function hooks, carrying the branch operation id and the parallel parent
+ * id. These hooks run on the branch's own thread, so start-before-end order per branch is deterministic.
*/
@SuppressWarnings("deprecation")
public class PluginParallelBranchHooks extends DurableHandler