Commit c721354b73

Andrew Kelley <superjoe30@gmail.com>
2018-02-13 17:17:26
correct doc comment in self hosted parser
1 parent 02f70cd
Changed files (1)
std
std/zig/parser.zig
@@ -95,7 +95,8 @@ pub const Parser = struct {
     };
 
     /// Returns an AST tree, allocated with the parser's allocator.
-    /// Result should be freed with `freeAst` when done.
+    /// Result should be freed with tree.deinit() when there are
+    /// no more references to any AST nodes of the tree.
     pub fn parse(self: &Parser) !Tree {
         var stack = self.initUtilityArrayList(State);
         defer self.deinitUtilityArrayList(stack);