From c18d8b6000e45b61cfb0c4454412405e42686e5c Mon Sep 17 00:00:00 2001 From: Akuli Date: Fri, 10 Jan 2025 03:33:24 +0200 Subject: [PATCH] Apply suggestions from code review --- compiler/ast.jou | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/ast.jou b/compiler/ast.jou index 57c9da08..ba27104b 100644 --- a/compiler/ast.jou +++ b/compiler/ast.jou @@ -1,8 +1,8 @@ # This file defines data structures of the Abstract Syntax Tree. They are # constructed in parser.jou. # -# Many class in this file have .print(), which can be used during debugging. If -# .print() exists, you probably don't want to use .print_with_tree_printer(), +# Many classes in this file have .print(), which can be used during debugging. If +# .print() exists, you probably don't need to call .print_with_tree_printer(), # which is basically an internal detail of the .print() implementation. import "stdlib/io.jou"