JuliaLang/julia

Include all public docstrings in the manual

Open

#19,529 创建于 2016年12月7日

在 GitHub 查看
 (8 评论) (2 反应) (0 负责人)Julia (48,709 star) (5,773 fork)batch import
docsdocsystemhelp wanted

描述

Currently there are a significant number (200+) docstrings in Base and it's submodules that are not included in the manual anywhere. To see the current list of docstrings that still need to be included change the following line in doc/make.jl

    checkdocs = :none,

to

    checkdocs = :all,

and build the docs with

make docs

from the root directory.

There's some docstrings for names that are exported and should definitely find there way into the manual somewhere, as well as quite a few internal docstrings that probably don't need to be included or could do with some improvements before inclusion.

(I'm marking this issue as up-for-grabs since it can readily be distributed between many contributors.)

贡献者指南