Change a comment slightly

This commit is contained in:
백현웅 2022-02-15 00:09:52 +09:00
parent 27457eb6e2
commit 847375027a

2
ast.ml
View file

@ -14,7 +14,7 @@ type t =
| Binop of t * operator * t | Binop of t * operator * t
| If of t * t * t (* cond then else *) | If of t * t * t (* cond then else *)
| Apply of t * t list (* function application *) | 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 | Set_binop_pre of operator * t
| Get_binop_pre of operator | Get_binop_pre of operator
| Set_binop_aso of operator * string | Set_binop_aso of operator * string