summaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2021-08-29 08:32:05 +0900
committerGitHub <[email protected]>2021-08-29 08:32:05 +0900
commit84e36d748ca6d2681aab9d548c225e601aa4cc30 (patch)
tree313bc7719eaec31e14595d98f9ea50fa5dfc28f7 /include
parent07f12fe890738688da917cfdc75a95be2bea2e26 (diff)
parentc9f7bcc0cfc3bf27a5906f617c0a32b179d31cc4 (diff)
downloadmruby-84e36d748ca6d2681aab9d548c225e601aa4cc30.tar.gz
mruby-84e36d748ca6d2681aab9d548c225e601aa4cc30.zip
Merge pull request #5541 from dearblue/mrb_get_args-oCSAH
Integrate the processing of similar specifiers of `mrb_get_args()`
Diffstat (limited to 'include')
-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` |