diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-07-02 19:01:35 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-07-02 19:01:35 +0200 |
commit | 471dca97bbed109b66c39e01b81b29c67e708cf9 (patch) | |
tree | 6ffffcea94d1b4bdb424aaeeaa3e47d43abe0cd2 /src/ghdldrv | |
parent | 53dc06a6087ee41cbf75b0f5731ee16078876ec0 (diff) | |
download | ghdl-471dca97bbed109b66c39e01b81b29c67e708cf9.tar.gz ghdl-471dca97bbed109b66c39e01b81b29c67e708cf9.tar.bz2 ghdl-471dca97bbed109b66c39e01b81b29c67e708cf9.zip |
ghdllocal: fix a typo in an error message.
Diffstat (limited to 'src/ghdldrv')
-rw-r--r-- | src/ghdldrv/ghdllocal.adb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ghdldrv/ghdllocal.adb b/src/ghdldrv/ghdllocal.adb index 93516d60b..da421a62c 100644 --- a/src/ghdldrv/ghdllocal.adb +++ b/src/ghdldrv/ghdllocal.adb @@ -1624,7 +1624,7 @@ package body Ghdllocal is is begin if Args'Length = 0 then - Error ("command '" & Cmd_Name & "' required an unit name"); + Error ("command '" & Cmd_Name & "' requires an unit name"); raise Option_Error; end if; |