summaryrefslogtreecommitdiff
path: root/src/syntax/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/syntax/mod.rs')
-rw-r--r--src/syntax/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/syntax/mod.rs b/src/syntax/mod.rs
index 9426090c..6673fda6 100644
--- a/src/syntax/mod.rs
+++ b/src/syntax/mod.rs
@@ -16,4 +16,4 @@ pub use token::*;
/// The abstract syntax tree.
///
/// This type can represent a full parsed document.
-pub type Tree = Vec<Node>;
+pub type SyntaxTree = Vec<Node>;