Skip to content

Commit 44215c1

Browse files
committed
[DOC] Mark Namespace debug methods to be "nodoc"
1 parent 3d2ee31 commit 44215c1

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

namespace.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -986,20 +986,23 @@ rb_f_dump_classext(VALUE recv, VALUE klass)
986986
return res;
987987
}
988988

989+
/* :nodoc: */
989990
static VALUE
990991
rb_namespace_root_p(VALUE namespace)
991992
{
992993
const rb_namespace_t *ns = (const rb_namespace_t *)rb_get_namespace_t(namespace);
993994
return RBOOL(NAMESPACE_ROOT_P(ns));
994995
}
995996

997+
/* :nodoc: */
996998
static VALUE
997999
rb_namespace_main_p(VALUE namespace)
9981000
{
9991001
const rb_namespace_t *ns = (const rb_namespace_t *)rb_get_namespace_t(namespace);
10001002
return RBOOL(NAMESPACE_MAIN_P(ns));
10011003
}
10021004

1005+
/* :nodoc: */
10031006
static VALUE
10041007
rb_namespace_user_p(VALUE namespace)
10051008
{

0 commit comments

Comments
 (0)