Skip to content

Commit

Permalink
Fix link in Task Graph doc. (vercel#8519)
Browse files Browse the repository at this point in the history
### Description

<!--
  ✍️ Write a short summary of your work.
  If necessary, include relevant screenshots.
-->

### Testing Instructions

<!--
  Give a quick description of steps to test your changes.
-->
  • Loading branch information
anthonyshew authored Jun 17, 2024
1 parent 503276f commit a089655
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/repo-docs/core-concepts/package-and-task-graph.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ In `turbo.json`, you express how tasks relate to each other. You can think of th
dependencies between tasks, but we have a more formal name for them: the Task
Graph.

Turborepo uses a data structure called a [directed acyclic graph (DAG)][1] to
Turborepo uses a data structure called a [directed acyclic graph (DAG)](https://en.wikipedia.org/wiki/Directed_acyclic_graph) to
understand your repository and its tasks. A graph is made up of "nodes" and
"edges". In the Task Graph, the nodes are tasks and the edges are the
dependencies between tasks. A _directed_ graph indicates that the edges
Expand Down

0 comments on commit a089655

Please sign in to comment.