From e06987c3c885b9c814557762edb1004991629e3e Mon Sep 17 00:00:00 2001 From: yash <52105266+skyash-dev@users.noreply.github.com> Date: Thu, 20 Aug 2026 12:43:51 +0530 Subject: [PATCH] fix dependency variable typo in explanation --- contributor_docs/p5.strands.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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