diff options
author | Douwe den Blanken <V0XNIHILI@users.noreply.github.com> | 2020-11-20 15:10:12 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-20 15:10:12 +0100 |
commit | 59113550786db33cde37db76c916b9fbdd88e009 (patch) | |
tree | 92dd96de8ae10b92492b27041914ffaffa33d897 | |
parent | abd3ccd6f496a4a60cd2c7f64dea4f70a6a299c6 (diff) | |
download | ghdl-59113550786db33cde37db76c916b9fbdd88e009.tar.gz ghdl-59113550786db33cde37db76c916b9fbdd88e009.tar.bz2 ghdl-59113550786db33cde37db76c916b9fbdd88e009.zip |
vhdl-sem_stmts: fix typo (#1518)
"time must be **greather** than previous transaction" -> "time must be **greater** than previous transaction"
(h was in the word 'greater')
-rw-r--r-- | src/vhdl/vhdl-sem_stmts.adb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vhdl/vhdl-sem_stmts.adb b/src/vhdl/vhdl-sem_stmts.adb index f6afa2294..0b636e7e9 100644 --- a/src/vhdl/vhdl-sem_stmts.adb +++ b/src/vhdl/vhdl-sem_stmts.adb @@ -587,7 +587,7 @@ package body Vhdl.Sem_Stmts is elsif Time <= Last_Time then Error_Msg_Sem (+Expr, - "time must be greather than previous transaction"); + "time must be greater than previous transaction"); else Last_Time := Time; end if; |