aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorMax Bruckner <max@maxbruckner.de>2016-03-09 13:33:23 +0100
committerMax Bruckner <max@maxbruckner.de>2016-03-09 13:33:23 +0100
commit77e5ce6980a6deab8af2c39dee6f02bb4e5973c4 (patch)
tree98c2b471b3a6999880d87c4075b4d6fc6eabe951 /doc
parent77f983ae738583dfce7c3c3aaab5efde16519af0 (diff)
downloadghdl-77e5ce6980a6deab8af2c39dee6f02bb4e5973c4.tar.gz
ghdl-77e5ce6980a6deab8af2c39dee6f02bb4e5973c4.tar.bz2
ghdl-77e5ce6980a6deab8af2c39dee6f02bb4e5973c4.zip
documentation: fix "hello" -> "hello_world"
Diffstat (limited to 'doc')
-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