docs: fix download link in start.rst.
authorwhitequark <whitequark@whitequark.org>
Sat, 11 Dec 2021 06:32:32 +0000 (06:32 +0000)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Fri, 31 Dec 2021 20:03:57 +0000 (20:03 +0000)
Fixes #647.

docs/conf.py
docs/start.rst

index bf295579db835ebe4cb8b17cede07d310c28c9da..22ab5cd251f0cb6ed0144779fd93de0df03eb521 100644 (file)
@@ -19,7 +19,7 @@ extensions = [
 with open(".gitignore") as f:
     exclude_patterns = [line.strip() for line in f.readlines()]
 
-master_doc = "cover"
+root_doc = "cover"
 
 intersphinx_mapping = {"python": ("https://docs.python.org/3", None)}
 
index 972a2872f0e9a5a42ac4eebb6c79247f9e9ac494..618c158e6e5b24e1fcb3354672d92589fa9d604e 100644 (file)
@@ -10,7 +10,7 @@ This section demonstrates the basic nMigen workflow to provide a cursory overvie
 A counter
 =========
 
-As a first example, consider a counter with a fixed limit, enable, and overflow. The code for this example is shown below. `Download <_code/up_counter.py>`_ and run it:
+As a first example, consider a counter with a fixed limit, enable, and overflow. The code for this example is shown below. :download:`Download <_code/up_counter.py>` and run it:
 
 .. code-block:: shell