summaryrefslogtreecommitdiffhomepage
path: root/include/mruby.h
diff options
context:
space:
mode:
authordearblue <[email protected]>2021-08-28 15:52:37 +0900
committerdearblue <[email protected]>2021-08-28 15:52:37 +0900
commitc9f7bcc0cfc3bf27a5906f617c0a32b179d31cc4 (patch)
tree313bc7719eaec31e14595d98f9ea50fa5dfc28f7 /include/mruby.h
parent07f12fe890738688da917cfdc75a95be2bea2e26 (diff)
downloadmruby-c9f7bcc0cfc3bf27a5906f617c0a32b179d31cc4.tar.gz
mruby-c9f7bcc0cfc3bf27a5906f617c0a32b179d31cc4.zip
Integrate the processing of similar specifiers of `mrb_get_args()`
It is `o`, `C`, `S`, `A` and `H` specifiers that are integrated. As a side effect, the `C!` Specifier can now be used.
Diffstat (limited to 'include/mruby.h')
-rw-r--r--include/mruby.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mruby.h b/include/mruby.h
index 0563ab577..af1b25792 100644
--- a/include/mruby.h
+++ b/include/mruby.h
@@ -892,7 +892,7 @@ MRB_API struct RClass* mrb_define_module_under_id(mrb_state *mrb, struct RClass
* | char | Ruby type | C types | Notes |
* |:----:|----------------|-------------------|----------------------------------------------------|
* | `o` | {Object} | {mrb_value} | Could be used to retrieve any type of argument |
- * | `C` | {Class}/{Module} | {mrb_value} | |
+ * | `C` | {Class}/{Module} | {mrb_value} | when `!` follows, the value may be `nil` |
* | `S` | {String} | {mrb_value} | when `!` follows, the value may be `nil` |
* | `A` | {Array} | {mrb_value} | when `!` follows, the value may be `nil` |
* | `H` | {Hash} | {mrb_value} | when `!` follows, the value may be `nil` |