From 2a3e4cf7b2fabdc2278d6c88e876845ff58c1ed1 Mon Sep 17 00:00:00 2001 From: Ikko Ashimine Date: Sat, 4 Dec 2021 15:41:08 +0900 Subject: [PATCH] Fix typo in compile.c alrady -> already --- src/compile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compile.c b/src/compile.c index 05478ab8..559bfd0b 100644 --- a/src/compile.c +++ b/src/compile.c @@ -420,7 +420,7 @@ static inst* block_take_last(block* b) { return i; } -// Binds a sequence of binders, which *must not* alrady be bound to each other, +// Binds a sequence of binders, which *must not* already be bound to each other, // to body, throwing away unreferenced defs block block_bind_referenced(block binder, block body, int bindflags) { assert(block_has_only_binders(binder, bindflags));