diff --git a/docs/execution-happy-path.md b/docs/execution-happy-path.md index 57f0f16..dbe48f7 100644 --- a/docs/execution-happy-path.md +++ b/docs/execution-happy-path.md @@ -48,7 +48,7 @@ sequenceDiagram Sim->>Exec: executePath(strategy, ctx, dev, log, config) Exec->>Strat: path(ctx) - Strat-->>Exec: Iterable + Strat-->>Exec: iterable of Points loop for each target point (clean run) Exec->>Exec: resolveTarget(bounds, target) → point @@ -66,7 +66,7 @@ sequenceDiagram Sim-->>Keeper: (done) Keeper->>Dev: getPosition() - Dev-->>Keeper: lastPos (== start; re-sync) + Dev-->>Keeper: lastPos (equals start, re-synced) Note over Keeper: lastActivity = now
loop continues ```