diff options
Diffstat (limited to 'src/syntax/mod.rs')
| -rw-r--r-- | src/syntax/mod.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/syntax/mod.rs b/src/syntax/mod.rs index 970cd283..9c78fbc3 100644 --- a/src/syntax/mod.rs +++ b/src/syntax/mod.rs @@ -12,5 +12,5 @@ pub use node::*; pub use span::*; pub use token::*; -/// A collection of nodes which form a tree together with the nodes' children. -pub type SynTree = SpanVec<SynNode>; +/// A collection of nodes which form a tree together with their children. +pub type Tree = SpanVec<Node>; |
