Skip to content

Commit 514f123

Browse files
committed
Fix errors in the README
There were duplicate explicit target name errors in the README. Learn more here, sphinx-doc/sphinx#3921.
1 parent a1f7387 commit 514f123

File tree

5 files changed

+22
-8
lines changed

5 files changed

+22
-8
lines changed

CHANGELOG.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,13 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## 0.0.1-alpha.1
8+
## 0.0.1-alpha.2 (2018-10-02)
9+
10+
### Fixed
11+
12+
- Duplicate explicit target name errors in the README.
13+
14+
## 0.0.1-alpha.1 (2018-10-02)
915

1016
### Added
1117

Pipfile

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ ipython = "*"
1212
setuptools = "*"
1313
wheel = "*"
1414
twine = "*"
15+
"collective.checkdocs" = "*"
1516

1617
[requires]
1718
python_version = "3.7"

Pipfile.lock

+8-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.rst

+5-5
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ is facing upwards, :code:`r` means the robot is facing towards the right,
5454
:code:`d` means the robot is facing downwards, or :code:`l` means the robot is
5555
facing towards the left).
5656

57-
**N.B.** You can find an example level `here <https://github.com/dwayne/herbert-python/blob/master/data/example/level3.txt>`_.
57+
**N.B.** You can find an example level `here <https://github.com/dwayne/herbert-python/blob/master/data/example/level3.txt>`__.
5858

5959
On each level there are some white buttons. To solve a level you must press all
6060
the white buttons. Your goal then is to program Herbert, in a language called
@@ -72,12 +72,12 @@ allotted maximum number of bytes.
7272
**The "h" language**
7373

7474
It is a simple language that contains statements, procedures with zero or more
75-
parameters and recursion. Check out the tutorial `here <https://github.com/dwayne/herbert-python/blob/master/data/resources/Tutorial.aspx.html>`_
75+
parameters and recursion. Check out the tutorial `here <https://github.com/dwayne/herbert-python/blob/master/data/resources/Tutorial.aspx.html>`__
7676
to get a better understanding of the language.
7777

78-
You can find examples of the language in use `here <https://github.com/dwayne/herbert-python/blob/master/data/example/sol3a.h>`_,
79-
`here <https://github.com/dwayne/herbert-python/blob/master/data/example/sol3b.h>`_
80-
and `here <https://github.com/dwayne/herbert-python/blob/master/data/example/sol3c.h>`_.
78+
You can find examples of the language in use `here <https://github.com/dwayne/herbert-python/blob/master/data/example/sol3a.h>`__,
79+
`here <https://github.com/dwayne/herbert-python/blob/master/data/example/sol3b.h>`__
80+
and `here <https://github.com/dwayne/herbert-python/blob/master/data/example/sol3c.h>`__.
8181

8282
**Challenge**
8383

herbert/constants.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
PROGRAM_NAME = 'Herbert'
2-
VERSION = '0.0.1-alpha.1'
2+
VERSION = '0.0.1-alpha.2'

0 commit comments

Comments
 (0)