Skip to content

Commit 53fa575

Browse files
authored
Apply suggestion from @chaptersix
1 parent 2f414c9 commit 53fa575

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nexus/operation.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ type OperationHandler[I, O any] interface {
8686
Start(ctx context.Context, input I, options StartOperationOptions) (HandlerStartOperationResult[O], error)
8787
// Cancel handles requests to cancel an asynchronous operation.
8888
// Cancellation in Nexus is:
89-
// 1. asynchronous - returning from this method only ensures that cancellation is delivered, it may later be
89+
// 1. asynchronous - returning from this method only ensures that cancelation is delivered, it may later be
9090
// ignored by the underlying operation implementation.
9191
// 2. idempotent - implementors should ignore duplicate cancellations for the same operation.
9292
Cancel(ctx context.Context, token string, options CancelOperationOptions) error

0 commit comments

Comments
 (0)