- Typo fix
This commit is contained in:
Tristan B. Velloza Kildaire 2024-05-04 10:35:56 +02:00
parent b83cadce82
commit 6b91fb0f20
1 changed files with 2 additions and 2 deletions

View File

@ -850,7 +850,7 @@ public class Graph(T)
public E[] opSlice(E)()
if(isGraphNodeType!(E) || isGraphValueType!(E))
{
// If the children as tree nodes is requested
// If the children as graph nodes is requested
static if(isGraphNodeType!(E))
{
return this.children;
@ -897,7 +897,7 @@ public class Graph(T)
public E opIndex(E)(size_t idx)
if(isGraphNodeType!(E) || isGraphValueType!(E))
{
// If the child as a tree node is requested
// If the child as a graph node is requested
static if(isGraphNodeType!(E))
{
return this.children[idx];