From 4ae0bacc6ea866ac0b9d36d0eb22f8ee78211188 Mon Sep 17 00:00:00 2001 From: Lanza Date: Sat, 28 Oct 2023 13:47:05 +0800 Subject: [PATCH] fix(class.c): typo in format specifiers --- src/class.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/class.c b/src/class.c index 83ee4de80..89f1c4699 100644 --- a/src/class.c +++ b/src/class.c @@ -1343,7 +1343,7 @@ finish: s: String [const char*,mrb_int] Receive two arguments; s! gives (NULL,0) for nil z: String [const char*] NUL terminated string; z! gives NULL for nil a: Array [const mrb_value*,mrb_int] Receive two arguments; a! gives (NULL,0) for nil - c: Class/Module [strcut RClass*] c! gives NULL for nil + c: Class/Module [struct RClass*] c! gives NULL for nil f: Integer/Float [mrb_float] i: Integer/Float [mrb_int] b: boolean [mrb_bool]