Bring error message inline with other implementations.

This commit is contained in:
Simon Forman 2023-02-14 12:07:58 -08:00
parent 21ac1f1f63
commit 9c355166b6
1 changed files with 1 additions and 1 deletions

View File

@ -195,7 +195,7 @@ pop_bool(JoyListPtr stack)
case joyFalse:
return 0;
default:
printf("Not a Boolean.\n");
printf("Not a Boolean value.\n");
longjmp(jbuf, 1);
}
}