Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/engine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ async function replayState(
function begin() {
if (complete) {
throw new Error(
"Cannot begin another operation after the conversation has completed, are you missing an `await`?",
"Cannot begin another operation after the replay has completed, are you missing an `await`?",
);
}
promises++;
Expand Down Expand Up @@ -318,7 +318,7 @@ async function replayState(
async function cancel(key?: unknown) {
if (complete) {
throw new Error(
"Cannot perform a cancel operation after the conversation has completed, are you missing an `await`?",
"Cannot perform a cancel operation after the replay has completed, are you missing an `await`?",
);
}
canceled = true;
Expand Down