File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ Obtain a node from a tree by indexing each level of the tree with the elements o
77This function is defined for all trees regardless of whether they have the [`IndexedChildren`](@ref).
88This is because a tree without [`IndexedChildren`](@ref) might have special cases in which all children
99are indexable, a prominent example being `Array` which may not have indexable sub-trees (e.g. an
10- array contianing a Dict) but there are common special cases in which array trees are fully indexable
10+ array containing a Dict) but there are common special cases in which array trees are fully indexable
1111(e.g. a tree in which every non-leaf node is an array).
1212
1313The elements of `idx` can be any argument to `getindex`, not necessarily integers. For example,
Original file line number Diff line number Diff line change @@ -117,7 +117,7 @@ struct IndexedChildren <: ChildIndexing end
117117 NonIndexedChildren <: ChildIndexing
118118
119119Indicates that the object returned by `children(n)` where `n` is a tree node is not necessarily indexable.
120- This trait applies to any tree which cannot guarantee indexable children in all cases, ragardless of whether
120+ This trait applies to any tree which cannot guarantee indexable children in all cases, regardless of whether
121121the tree is indexable in special cases. For example, `Array` has this trait even though there is a large
122122class of indexable trees consisting of arrays.
123123"""
You can’t perform that action at this time.
0 commit comments