Merge pull request #6090 from LanzaSchneider/patch-1

fix(class.c): typo in format specifiers
This commit is contained in:
Yukihiro "Matz" Matsumoto
2023-11-02 08:20:39 +09:00
committed by GitHub
+1 -1
View File
@@ -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]