@@ -480,8 +480,9 @@ type (
480
480
// Client is the client for starting and getting information about a workflow executions as well as
481
481
// completing activities asynchronously.
482
482
Client interface {
483
- // ExecuteWorkflow starts a workflow execution and return a WorkflowRun instance and error
484
- // The user can use this to start using a function or workflow type name.
483
+ // ExecuteWorkflow starts a workflow execution and returns a WorkflowRun instance or error
484
+ //
485
+ // This can be used to start a workflow using a function reference or workflow type name.
485
486
// Either by
486
487
// ExecuteWorkflow(ctx, options, "workflowTypeName", arg1, arg2, arg3)
487
488
// or
@@ -498,8 +499,8 @@ type (
498
499
// - Get(ctx context.Context, valuePtr interface{}) error: which will fill the workflow
499
500
// execution result to valuePtr, if workflow execution is a success, or return corresponding
500
501
// error. This is a blocking API.
501
- // NOTE: if the started workflow return ContinueAsNewError during the workflow execution, the
502
- // return result of GetRunID() will be the started workflow run ID, not the new run ID caused by ContinueAsNewError,
502
+ // NOTE: if the started workflow returns ContinueAsNewError during the workflow execution, the
503
+ // returned result of GetRunID() will be the started workflow run ID, not the new run ID caused by ContinueAsNewError,
503
504
// however, Get(ctx context.Context, valuePtr interface{}) will return result from the run which did not return ContinueAsNewError.
504
505
// Say ExecuteWorkflow started a workflow, in its first run, has run ID "run ID 1", and returned ContinueAsNewError,
505
506
// the second run has run ID "run ID 2" and return some result other than ContinueAsNewError:
0 commit comments