diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2021-08-29 08:32:05 +0900 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-08-29 08:32:05 +0900 |
| commit | 84e36d748ca6d2681aab9d548c225e601aa4cc30 (patch) | |
| tree | 313bc7719eaec31e14595d98f9ea50fa5dfc28f7 /include | |
| parent | 07f12fe890738688da917cfdc75a95be2bea2e26 (diff) | |
| parent | c9f7bcc0cfc3bf27a5906f617c0a32b179d31cc4 (diff) | |
| download | mruby-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.h | 2 |
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` | |
