Skip to content

Commit

Permalink
Fix typo in README example (#202)
Browse files Browse the repository at this point in the history
  • Loading branch information
bergundy authored Jan 23, 2025
1 parent eabdfe8 commit 17cb2b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -608,7 +608,7 @@ Or, say, to wait on the first of 5 activities or a timeout to complete:
# Start 5 activities
act_futs = 5.times.map do |i|
Temporalio::Workflow::Future.new do
Temporalio::Workflow.execute_activity(MyActivity, "my-arg-#{i}" schedule_to_close_timeout: 300)
Temporalio::Workflow.execute_activity(MyActivity, "my-arg-#{i}", schedule_to_close_timeout: 300)
end
end
# Start a timer
Expand Down

0 comments on commit 17cb2b5

Please sign in to comment.