aboutsummaryrefslogtreecommitdiffstats
path: root/error.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-02-23 02:16:42 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-02-23 02:16:42 +0000
commit6d7034a849ff5b0b4c044e6b1dc52b57bcaa70dd (patch)
tree0ab2804b6aab21b2d07c840458f10a515dfef3b5 /error.c
parent5f025b1569b6057d96f7cd9a41088f96f5183529 (diff)
downloadruby-6d7034a849ff5b0b4c044e6b1dc52b57bcaa70dd.tar.gz
[DOC] nodoc internal methods/classes
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62542 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'error.c')
-rw-r--r--error.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/error.c b/error.c
index 0b142a3967..0f60f491ec 100644
--- a/error.c
+++ b/error.c
@@ -298,6 +298,7 @@ end_with_asciichar(VALUE str, int c)
rb_str_end_with_asciichar(str, c);
}
+/* :nodoc: */
static VALUE
warning_write(int argc, VALUE *argv, VALUE buf)
{
@@ -2411,6 +2412,7 @@ Init_Exception(void)
rb_define_method(rb_mWarning, "warn", rb_warning_s_warn, 1);
rb_extend_object(rb_mWarning, rb_mWarning);
+ /* :nodoc: */
rb_cWarningBuffer = rb_define_class_under(rb_mWarning, "buffer", rb_cString);
rb_define_method(rb_cWarningBuffer, "write", warning_write, -1);