From 5a45555ea1ff6f6dc33c9168e1426c796832a355 Mon Sep 17 00:00:00 2001 From: Gregory White Date: Fri, 1 Dec 2023 14:32:46 +0000 Subject: [PATCH] Documentation: Simplify graph terminology --- docs/graph/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/graph/index.md b/docs/graph/index.md index 38cbadba..c1c247ab 100644 --- a/docs/graph/index.md +++ b/docs/graph/index.md @@ -5,7 +5,7 @@ Each time a new block of audio is requested by the system audio I/O layer, the `AudioGraph` object is responsible for traversing the tree of nodes and generating new samples by calling each `Node`'s `process` method. !!! info "Why 'Graph'?" - You may be more familiar with "graph" being used to mean a data visualisation. In signal processing and discrete mathematics, the term "graph" is also used to denote a system of nodes ("vertices") related by connections ("edges"). Read more: [Graph Theory Basics](https://courses.lumenlearning.com/wmopen-mathforliberalarts/chapter/introduction-graph-theory/) (Lumen Learning). + You may be more familiar with "graph" being used to mean a data visualisation. In signal processing and discrete mathematics, the term "graph" is also used to denote a system of nodes related by connections. Read more: [Graph Theory Basics](https://courses.lumenlearning.com/wmopen-mathforliberalarts/chapter/introduction-graph-theory/) (Lumen Learning). ---