Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: amaranth-lang/amaranth
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 116d4b9bc25a
Choose a base ref
...
head repository: amaranth-lang/amaranth
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0fb2b4cd3964
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Dec 11, 2021

  1. docs: fix download link in start.rst.

    Fixes #647.
    whitequark committed Dec 11, 2021
    Copy the full SHA
    0fb2b4c View commit details
Showing with 2 additions and 2 deletions.
  1. +1 −1 docs/conf.py
  2. +1 −1 docs/start.rst
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
@@ -19,7 +19,7 @@
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)}

2 changes: 1 addition & 1 deletion docs/start.rst
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@ This section demonstrates the basic Amaranth workflow to provide a cursory overv
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