From 87ff28a69d3f666fed1348422aa088043e411368 Mon Sep 17 00:00:00 2001 From: Mike Voss Date: Wed, 4 Dec 2024 17:17:28 -0600 Subject: [PATCH] Update rfcs/proposed/task_group_dynamic_dependencies/README.md Co-authored-by: Aleksei Fedotov --- rfcs/proposed/task_group_dynamic_dependencies/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rfcs/proposed/task_group_dynamic_dependencies/README.md b/rfcs/proposed/task_group_dynamic_dependencies/README.md index 94b538706d..2e62fa345e 100755 --- a/rfcs/proposed/task_group_dynamic_dependencies/README.md +++ b/rfcs/proposed/task_group_dynamic_dependencies/README.md @@ -97,7 +97,7 @@ The first extension is to expand the semantics and usable lifetime of `task_handle` so that remains valid after it is passed to run and it can represent tasks in any state, including submitted, executing, and completed tasks. Similarly, a `task_handle` in the submitted state may represent a task -that has predecessors that must complete before it can executed, and so passing +that has predecessors that must complete before it can execute, and so passing a `task_handle` to `task_group::run` or `task_group::run_and_wait` only makes it available for dependency tracking, and does not make it immediately legal to execute.