diff --git a/src/core/corelib.c b/src/core/corelib.c index ac5c01ed..78986696 100644 --- a/src/core/corelib.c +++ b/src/core/corelib.c @@ -645,20 +645,21 @@ static const JanetReg corelib_cfuns[] = { { "type", janet_core_type, JDOC("(type x)\n\n" - "Returns the type of x as a keyword. x is one of\n" - "\t:nil\n" - "\t:boolean\n" - "\t:number\n" - "\t:array\n" - "\t:tuple\n" - "\t:table\n" - "\t:struct\n" - "\t:string\n" - "\t:buffer\n" - "\t:symbol\n" - "\t:keyword\n" - "\t:function\n" - "\t:cfunction\n\n" + "Returns the type of `x` as a keyword. `x` is one of:\n\n" + "* :nil\n\n" + "* :boolean\n\n" + "* :number\n\n" + "* :array\n\n" + "* :tuple\n\n" + "* :table\n\n" + "* :struct\n\n" + "* :string\n\n" + "* :buffer\n\n" + "* :symbol\n\n" + "* :keyword\n\n" + "* :function\n\n" + "* :cfunction\n\n" + "* :fiber\n\n" "or another keyword for an abstract type.") }, {