Skip to content

Commit 815c648

Browse files
authoredJan 10, 2025
small docs/rendering fixes (#1769)
* docs fixes * docs: fix list
1 parent a708f7e commit 815c648

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed
 

‎internal/internal_task_pollers.go

+4-2
Original file line numberDiff line numberDiff line change
@@ -245,8 +245,10 @@ func (bp *basePoller) stopping() bool {
245245
}
246246
}
247247

248-
// doPoll runs the given pollFunc in a separate go routine. Returns when either of the conditions are met:
249-
// - poll succeeds, poll fails or worker is stopping
248+
// doPoll runs the given pollFunc in a separate go routine. Returns when any of the conditions are met:
249+
// - poll succeeds
250+
// - poll fails
251+
// - worker is stopping
250252
func (bp *basePoller) doPoll(pollFunc func(ctx context.Context) (taskForWorker, error)) (taskForWorker, error) {
251253
if bp.stopping() {
252254
return nil, errStop

‎workflow/doc.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ the sole parameter it receives as part of its initialization as a parameter to t
5151
5252
func SimpleWorkflow(ctx workflow.Context, value string) error {
5353
ao := workflow.ActivityOptions{
54-
TaskQueue: "sampleTaskQueue",
54+
TaskQueue: "sampleTaskQueue",
5555
ScheduleToCloseTimeout: time.Second * 60,
5656
ScheduleToStartTimeout: time.Second * 60,
5757
StartToCloseTimeout: time.Second * 60,
@@ -149,7 +149,7 @@ The primary responsibility of the workflow implementation is to schedule activit
149149
straightforward way to do that is via the library method [workflow.ExecuteActivity]:
150150
151151
ao := workflow.ActivityOptions{
152-
TaskQueue: "sampleTaskQueue",
152+
TaskQueue: "sampleTaskQueue",
153153
ScheduleToCloseTimeout: time.Second * 60,
154154
ScheduleToStartTimeout: time.Second * 60,
155155
StartToCloseTimeout: time.Second * 60,

0 commit comments

Comments
 (0)