From 6d9dd5fc27e62841a20cb44d4eb2a1dc01eb7703 Mon Sep 17 00:00:00 2001 From: Iago-lito Date: Sun, 26 Nov 2023 19:01:42 +0100 Subject: [PATCH] Fix 404 in node-graph README. (#1480) (defaulting to `master` instead of this dead branch?) --- node-graph/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node-graph/README.md b/node-graph/README.md index 134dadc1..307a8456 100644 --- a/node-graph/README.md +++ b/node-graph/README.md @@ -21,7 +21,7 @@ pub struct DocumentNode { pub path: Option>, } ``` -(Explanatory comments omitted; the actual definition is currently found in [`node-graph/graph-craft/src/document.rs`](https://github.com/GraphiteEditor/Graphite/blob/improve-node-docs/node-graph/graph-craft/src/document.rs)) +(Explanatory comments omitted; the actual definition is currently found in [`node-graph/graph-craft/src/document.rs`](https://github.com/GraphiteEditor/Graphite/blob/master/node-graph/graph-craft/src/document.rs)) Each `DocumentNode` is of a particular type, for example the "Opacity" node type. You can define your own type of document node in `editor/src/messages/portfolio/document/node_graph/node_graph_message_handler/document_node_types.rs`. A sample document node type definition for the opacity node is shown: