aboutsummaryrefslogtreecommitdiff
path: root/syntax_tree.moon
diff options
context:
space:
mode:
Diffstat (limited to 'syntax_tree.moon')
-rw-r--r--syntax_tree.moon2
1 files changed, 1 insertions, 1 deletions
diff --git a/syntax_tree.moon b/syntax_tree.moon
index b8c0b9d..eb9c87c 100644
--- a/syntax_tree.moon
+++ b/syntax_tree.moon
@@ -107,7 +107,7 @@ class SyntaxTree
@is_instance: (t)=>
type(t) == 'table' and getmetatable(t) == @__base
-SyntaxTree.__base.__type = "Syntax Tree"
+SyntaxTree.__base.__type = "a Syntax Tree"
getmetatable(SyntaxTree).__call = (t, ...)=>
if type(t.source) == 'string'