summaryrefslogtreecommitdiff
path: root/src/source.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/source.rs')
-rw-r--r--src/source.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/source.rs b/src/source.rs
index 5fd85ed9..432688a0 100644
--- a/src/source.rs
+++ b/src/source.rs
@@ -149,12 +149,12 @@ impl SourceFile {
Self::new(SourceId(0), Path::new(""), src.into())
}
- /// The root node of the untyped green tree.
+ /// The root node of the file's untyped green tree.
pub fn root(&self) -> &Rc<GreenNode> {
&self.root
}
- /// The file's abstract syntax tree.
+ /// The root node of the file's typed abstract syntax tree.
pub fn ast(&self) -> TypResult<Markup> {
let red = RedNode::from_root(self.root.clone(), self.id);
let errors = red.errors();