Fix more styling and minor issues

This commit is contained in:
Harold Brenes
2025-04-27 23:05:17 -04:00
parent f3923ed666
commit 89533f49e4
3 changed files with 11 additions and 11 deletions

View File

@@ -6491,7 +6491,7 @@ gb_internal void check_objc_context_provider_procedures(Checker *c) {
Type *proc_type = proc_entity->type;
// TODO(harold): Give better errors here (specify exactly what's wrong)
const char* signature_error = "The procedure for @(objc_context_provider) has an incorrect signature.";
const char *signature_error = "The procedure for @(objc_context_provider) has an incorrect signature.";
if (proc_type->Proc.param_count != 1 || proc_type->Proc.result_count != 1) {
error(proc_entity->token, signature_error);