aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortgingold <tgingold@users.noreply.github.com>2016-03-10 07:50:10 +0100
committertgingold <tgingold@users.noreply.github.com>2016-03-10 07:50:10 +0100
commit4f839f02e3cffedac8aa3a6f3a6842b3f9909ae1 (patch)
tree98c2b471b3a6999880d87c4075b4d6fc6eabe951
parent77f983ae738583dfce7c3c3aaab5efde16519af0 (diff)
parent77e5ce6980a6deab8af2c39dee6f02bb4e5973c4 (diff)
downloadghdl-4f839f02e3cffedac8aa3a6f3a6842b3f9909ae1.tar.gz
ghdl-4f839f02e3cffedac8aa3a6f3a6842b3f9909ae1.tar.bz2
ghdl-4f839f02e3cffedac8aa3a6f3a6842b3f9909ae1.zip
Merge pull request #46 from FSMaxB/fix-documentation
Fix Documentation: Name of Hello World program.
-rw-r--r--doc/Starting_with_GHDL.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/Starting_with_GHDL.rst b/doc/Starting_with_GHDL.rst
index 92818c781..23888ba59 100644
--- a/doc/Starting_with_GHDL.rst
+++ b/doc/Starting_with_GHDL.rst
@@ -51,10 +51,10 @@ Then, you have to build an executable file.
$ ghdl -e hello_world
The :option:`-e` option means :dfn:`elaborate`. With this option, `GHDL`
-creates code in order to elaborate a design, with the :samp:`hello`
+creates code in order to elaborate a design, with the :samp:`hello_world`
entity at the top of the hierarchy.
-On GNU/Linux, the result is an executable program called :file:`hello`
+On GNU/Linux, the result is an executable program called :file:`hello_world`
which can be run:
.. code-block:: shell