summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIkko Ashimine <eltociear@gmail.com>2021-12-04 15:41:08 +0900
committerNico Williams <nico@cryptonector.com>2022-05-26 15:44:12 -0500
commit2a3e4cf7b2fabdc2278d6c88e876845ff58c1ed1 (patch)
tree8c2de8a75e1395d9943c81dedc3f2fffda91e6df
parent94e87c93770b8bab753fd1186b94a65f4699e2ac (diff)
downloadjq-2a3e4cf7b2fabdc2278d6c88e876845ff58c1ed1.tar.gz
Fix typo in compile.c
alrady -> already
-rw-r--r--src/compile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compile.c b/src/compile.c
index 05478ab..559bfd0 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));