From 9c355166b629af5bd732f11c93cd5c58311c8b4e Mon Sep 17 00:00:00 2001 From: Simon Forman Date: Tue, 14 Feb 2023 12:07:58 -0800 Subject: [PATCH] Bring error message inline with other implementations. --- implementations/C/joy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/implementations/C/joy.c b/implementations/C/joy.c index 3bb559b..9b5ca29 100644 --- a/implementations/C/joy.c +++ b/implementations/C/joy.c @@ -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); } }