diff options
author | gritbub <38131016+gritbub@users.noreply.github.com> | 2018-06-05 17:03:51 -0500 |
---|---|---|
committer | gritbub <38131016+gritbub@users.noreply.github.com> | 2018-06-05 17:03:51 -0500 |
commit | 945ef8961cfab9afbd73c434bd557ea5074d46b3 (patch) | |
tree | ec2c4ea8dbddf78443613dd051e367f30d7eb95f | |
parent | 0490a02c0982962c944e3b8eb7ded090e18e403b (diff) | |
download | ghdl-945ef8961cfab9afbd73c434bd557ea5074d46b3.tar.gz ghdl-945ef8961cfab9afbd73c434bd557ea5074d46b3.tar.bz2 ghdl-945ef8961cfab9afbd73c434bd557ea5074d46b3.zip |
Fix typo
@gwtnb opened PR 597 while PR 591 was still open, pointing out this
typo that had been missed.
Incorporate this typo fix into PR 591
-rw-r--r-- | doc/using/QuickStartGuide.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/using/QuickStartGuide.rst b/doc/using/QuickStartGuide.rst index 974d550ac..279969db1 100644 --- a/doc/using/QuickStartGuide.rst +++ b/doc/using/QuickStartGuide.rst @@ -48,7 +48,7 @@ To illustrate the general purpose of `VHDL`, here is a commented `'Hello world'` If a GCC/LLVM variant of `GHDL` is used: * `Analysis` generates a file, :file:`hello.o`, which is the object file corresponding to your `VHDL` program. This is not created with mcode. - * The elaboration step is mandatory after running the analysis and prior to launching the simulation. This wil generate an executable binary named :file:`hello_world`. + * The elaboration step is mandatory after running the analysis and prior to launching the simulation. This will generate an executable binary named :file:`hello_world`. * As a result, :option:`-r` is just a passthrough to the binary generated in the `elaboration`. Therefore, the executable can be run directly, ``./hello_world``. See :option:`-r` for more informartion. .. HINT:: :option:`-e` can be bypassed with mcode, since :option:`-r` actually elaborates the design and saves it on memory before running the simulation. But you can still use it to check for some elaboration problems. |