File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -276,7 +276,7 @@ async function replayState(
276276 function begin ( ) {
277277 if ( complete ) {
278278 throw new Error (
279- "Cannot begin another operation after the conversation has completed, are you missing an `await`?" ,
279+ "Cannot begin another operation after the replay has completed, are you missing an `await`?" ,
280280 ) ;
281281 }
282282 promises ++ ;
@@ -318,7 +318,7 @@ async function replayState(
318318 async function cancel ( key ?: unknown ) {
319319 if ( complete ) {
320320 throw new Error (
321- "Cannot perform a cancel operation after the conversation has completed, are you missing an `await`?" ,
321+ "Cannot perform a cancel operation after the replay has completed, are you missing an `await`?" ,
322322 ) ;
323323 }
324324 canceled = true ;
You can’t perform that action at this time.
0 commit comments