diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2020-11-25 00:50:36 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2021-02-28 17:10:57 +0900 |
commit | 3059a999b2f3a2f4b8d69c7e473a81ce70f82f3c (patch) | |
tree | c1f4ff73d463e039d80b6610fb8f0e7b79d8a429 /doc/conf.py | |
parent | 6ca7c1c579c6857985a5e8faae64a77b32dc6098 (diff) | |
download | sphinx-git-3059a999b2f3a2f4b8d69c7e473a81ce70f82f3c.tar.gz |
Close #8326: Rename master_doc to root_doc
To describe the purpose more accurately, the `master_doc` is now renamed
to `root_doc`. The old name is still available. But it is recommeneded
to use new one from now on.
Diffstat (limited to 'doc/conf.py')
-rw-r--r-- | doc/conf.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/conf.py b/doc/conf.py index f38d03d6d..7cf74dc97 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -9,7 +9,7 @@ extensions = ['sphinx.ext.autodoc', 'sphinx.ext.doctest', 'sphinx.ext.todo', 'sphinx.ext.intersphinx', 'sphinx.ext.viewcode', 'sphinx.ext.inheritance_diagram'] -master_doc = 'contents' +root_doc = 'contents' templates_path = ['_templates'] exclude_patterns = ['_build'] |