From 2738ff640dd9c8ec628400efc49f8fb45ebe2c77 Mon Sep 17 00:00:00 2001 From: gingerBill Date: Mon, 17 Aug 2026 19:56:03 +0100 Subject: [PATCH] Minor text fix --- src/check_decl.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/check_decl.cpp b/src/check_decl.cpp index 6e89dbfcd..cc12791c8 100644 --- a/src/check_decl.cpp +++ b/src/check_decl.cpp @@ -2026,7 +2026,7 @@ gb_internal void check_asm_group_decl(CheckerContext *ctx, Entity *asm_entity, D e = check_selector(ctx, &o, arg, nullptr); } if (e == nullptr) { - error(arg, "Expected a valid entity name in asm group, got %.*s", LIT(ast_strings[arg->kind])); + error(arg, "Expected a valid entity name in asm template group, got %.*s", LIT(ast_strings[arg->kind])); continue; } if (e->kind != Entity_AsmTemplate) { @@ -2035,7 +2035,7 @@ gb_internal void check_asm_group_decl(CheckerContext *ctx, Entity *asm_entity, D } if (ptr_set_update(&entity_set, e)) { - error(arg, "Previous use of `%.*s` in asm group", LIT(e->token.string)); + error(arg, "Previous use of `%.*s` in asm template group", LIT(e->token.string)); continue; } array_add(&pge->entities, e);