Skip to content

Commit

Permalink
Fix errors in the README
Browse files Browse the repository at this point in the history
There were duplicate explicit target name errors in the README.

Learn more here, sphinx-doc/sphinx#3921.
  • Loading branch information
dwayne committed Oct 2, 2018
1 parent a1f7387 commit 514f123
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 8 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.0.1-alpha.1
## 0.0.1-alpha.2 (2018-10-02)

### Fixed

- Duplicate explicit target name errors in the README.

## 0.0.1-alpha.1 (2018-10-02)

### Added

Expand Down
1 change: 1 addition & 0 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ ipython = "*"
setuptools = "*"
wheel = "*"
twine = "*"
"collective.checkdocs" = "*"

[requires]
python_version = "3.7"
9 changes: 8 additions & 1 deletion Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ is facing upwards, :code:`r` means the robot is facing towards the right,
:code:`d` means the robot is facing downwards, or :code:`l` means the robot is
facing towards the left).

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

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

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

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

**Challenge**

Expand Down
2 changes: 1 addition & 1 deletion herbert/constants.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
PROGRAM_NAME = 'Herbert'
VERSION = '0.0.1-alpha.1'
VERSION = '0.0.1-alpha.2'

0 comments on commit 514f123

Please sign in to comment.