1
0
mirror of https://github.com/stedolan/jq.git synced 2024-05-11 05:55:39 +00:00

Fix typo in compile.c

alrady -> already
This commit is contained in:
Ikko Ashimine
2021-12-04 15:41:08 +09:00
committed by Nico Williams
parent 94e87c9377
commit 2a3e4cf7b2

View File

@ -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));