From 847375027a42a5b98e334d8f4d8861f1a052b074 Mon Sep 17 00:00:00 2001 From: Hyeonung Baek Date: Tue, 15 Feb 2022 00:09:52 +0900 Subject: [PATCH] Change a comment slightly --- ast.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ast.ml b/ast.ml index 16e389d..0ac79c4 100644 --- a/ast.ml +++ b/ast.ml @@ -14,7 +14,7 @@ type t = | Binop of t * operator * t | If of t * t * t (* cond then else *) | Apply of t * t list (* function application *) - (* these will be seperated into (toplevel) directives. *) + (* these will be seperated into external functions. *) | Set_binop_pre of operator * t | Get_binop_pre of operator | Set_binop_aso of operator * string