diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-03-16 21:40:05 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-03-16 21:40:05 +0000 |
commit | ae1951a030cd25bb6f3fecaf156c8bd047a91648 (patch) | |
tree | 27cf93266f40b65f7bad95f73aaffac4f29647f3 /ruby.h | |
parent | 7dbb035ba85215a39725d8a4922bff06a35cab3e (diff) |
* ruby.h (rb_warning, rb_sys_warning): fixed typo in rdoc.
[ruby-core:28696]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@26960 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ruby.h')
-rw-r--r-- | ruby.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -591,8 +591,8 @@ NORETURN(void rb_iter_break _((void))); NORETURN(void rb_exit _((int))); NORETURN(void rb_notimplement _((void))); -void rb_warning __((const char*, ...)); /* reports if `-w' specified */ -void rb_sys_warning __((const char*, ...)); /* reports if `-w' specified */ +void rb_warning __((const char*, ...)); /* reports if `-W' specified */ +void rb_sys_warning __((const char*, ...)); /* reports if `-W' specified */ void rb_warn __((const char*, ...)); /* reports always */ typedef VALUE rb_block_call_func _((VALUE, VALUE)); |