From 15f62d1348a05cdc5d678d2417d6a10e6772305e Mon Sep 17 00:00:00 2001 From: Andrew Halberstadt Date: Fri, 11 Jul 2025 09:52:23 -0400 Subject: [PATCH] docs: fix links in create a taskgraph tutorial --- docs/tutorials/creating-a-task-graph.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/tutorials/creating-a-task-graph.rst b/docs/tutorials/creating-a-task-graph.rst index 0b7251903..cceec6cd0 100644 --- a/docs/tutorials/creating-a-task-graph.rst +++ b/docs/tutorials/creating-a-task-graph.rst @@ -85,7 +85,7 @@ you have a ``hello`` kind. For this next section we'll be editing #. Declare the set of :term:`transforms ` that will be applied to tasks. By default, taskgraph will include the - :mod:`-taskgraph.transforms.run` and :mod:`-taskgraph.transforms.task` + :mod:`~taskgraph.transforms.run` and :mod:`~taskgraph.transforms.task` transforms, which are used by the vast majority of simple tasks. It is also quite common for kind-specific transforms to be used, which we will do here for the purpose of demonstration. In our example: @@ -125,7 +125,7 @@ Create the Transform -------------------- :term:`Transforms ` are Python generators that take a -:class:`-taskgraph.transforms.base.TransformConfig` instance and a generator +:class:`~taskgraph.transforms.base.TransformConfig` instance and a generator that yields task definitions (in dictionary form) as input. It yields task definitions (which may or may not be modified) from the original inputs.