diff --git a/contributor_docs/p5.strands.md b/contributor_docs/p5.strands.md index e7a60227e9..817d5934e2 100644 --- a/contributor_docs/p5.strands.md +++ b/contributor_docs/p5.strands.md @@ -120,7 +120,7 @@ let c_0 = b_1 + a_0; return c_0; ``` -When we generate GLSL from the graph, we start from the variables we need to output, the return values of the function (e.g. `c_0` in the example above.) From there, we can track dependencies through the DAG (in this case, `b_1` and `a_1`). Each dependency has their own dependencies. We make sure we output the dependencies for a node before the node itself. +When we generate GLSL from the graph, we start from the variables we need to output, the return values of the function (e.g. `c_0` in the example above.) From there, we can track dependencies through the DAG (in this case, `b_1` and `a_0`). Each dependency has their own dependencies. We make sure we output the dependencies for a node before the node itself. ```mermaid flowchart TB