From dfa473f2c86a2690ce40e6ecea14d7bbe6eff69b Mon Sep 17 00:00:00 2001 From: gingerBill Date: Mon, 24 Aug 2026 18:20:12 +0100 Subject: [PATCH] Minor grammar fix in error message --- src/check_asm.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/check_asm.cpp b/src/check_asm.cpp index fe06cfe51..98ab7fc49 100644 --- a/src/check_asm.cpp +++ b/src/check_asm.cpp @@ -1096,7 +1096,7 @@ gb_internal void check_operand_constraints(AsmCtx *asm_ctx, Slice const i64 count = too_big ? 0 : exact_value_to_i64(ev); if (mp_isneg(v) || too_big || count >= width) { gbString vs = exact_value_to_string(ev); - error(op->expr, "'%.*s' shift count %s is out of range for a %d-bit operand (must be 0..<%d)", + error(op->expr, "'%.*s' shift count %s is out of range for the %d-bit operand (must be 0..<%d)", LIT(name), vs, cast(int)width, cast(int)width); gb_string_free(vs); }