diff options
author | Juan Luis Cano RodrÃguez <hello@juanlu.space> | 2021-06-21 07:30:02 +0200 |
---|---|---|
committer | Juan Luis Cano RodrÃguez <hello@juanlu.space> | 2021-06-21 07:30:02 +0200 |
commit | d08c3677d12f80bcbcaff22f4537ae5e7fc14030 (patch) | |
tree | a201d011f641a74fc2a9a2c5b6d0ec951f0cc293 | |
parent | e75f31ad47155d77db6a370f87732c9df6ff4649 (diff) | |
download | sphinx-git-d08c3677d12f80bcbcaff22f4537ae5e7fc14030.tar.gz |
Avoid reference to earlier content
-rw-r--r-- | doc/tutorial/index.rst | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/doc/tutorial/index.rst b/doc/tutorial/index.rst index e98e718e1..94878548f 100644 --- a/doc/tutorial/index.rst +++ b/doc/tutorial/index.rst @@ -318,10 +318,11 @@ Narrative documentation in Sphinx Inserting documents in the project hierarchy ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -As discussed at the beginning, ``index.rst`` is the :term:`master document`, -whose main function is to serve as a welcome page and to contain the root of -the "table of contents tree" (or *toctree*). Sphinx allows you to assemble -a project from different files, which is helpful when the project grows. +The file ``index.rst`` created by ``sphinx-quickstart`` is the :term:`master +document`, whose main function is to serve as a welcome page and to contain the +root of the "table of contents tree" (or *toctree*). Sphinx allows you to +assemble a project from different files, which is helpful when the project +grows. As an example, create a new file ``docs/source/usage.rst`` (next to ``index.rst``) with these contents: |