aboutsummaryrefslogtreecommitdiffstats
path: root/src/vhdl/vhdl-sem_stmts.adb
diff options
context:
space:
mode:
authorDouwe den Blanken <V0XNIHILI@users.noreply.github.com>2020-11-20 15:10:12 +0100
committerGitHub <noreply@github.com>2020-11-20 15:10:12 +0100
commit59113550786db33cde37db76c916b9fbdd88e009 (patch)
tree92dd96de8ae10b92492b27041914ffaffa33d897 /src/vhdl/vhdl-sem_stmts.adb
parentabd3ccd6f496a4a60cd2c7f64dea4f70a6a299c6 (diff)
downloadghdl-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')
Diffstat (limited to 'src/vhdl/vhdl-sem_stmts.adb')
-rw-r--r--src/vhdl/vhdl-sem_stmts.adb2
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;