diff options
author | tgingold <tgingold@users.noreply.github.com> | 2016-12-07 21:32:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-07 21:32:45 +0100 |
commit | 86c711e9dd0132f4fee1c1f69ad5feed96bc7de8 (patch) | |
tree | a0f51e96481503e6290ec0d348a56df0d1573dc2 | |
parent | e3f9722a92bfce25f0436b82897feacffd0ffbe2 (diff) | |
parent | 4d267a1e62ebe1dfa7b443eb70fb5fef3914e815 (diff) | |
download | ghdl-86c711e9dd0132f4fee1c1f69ad5feed96bc7de8.tar.gz ghdl-86c711e9dd0132f4fee1c1f69ad5feed96bc7de8.tar.bz2 ghdl-86c711e9dd0132f4fee1c1f69ad5feed96bc7de8.zip |
Merge pull request #215 from robinkjoy/master
Fix spelling in error message
-rw-r--r-- | src/vhdl/parse.adb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vhdl/parse.adb b/src/vhdl/parse.adb index 9cb89c5cd..52bd5a34d 100644 --- a/src/vhdl/parse.adb +++ b/src/vhdl/parse.adb @@ -3162,7 +3162,7 @@ package body Parse is Set_Minus_Terminal (First, Parse_Name); end if; when others => - Error_Msg_Parse ("missign type or across/throught aspect " + Error_Msg_Parse ("missing type or across/throught aspect " & "in quantity declaration"); Eat_Tokens_Until_Semi_Colon; raise Expect_Error; @@ -3271,7 +3271,7 @@ package body Parse is if Current_Token /= Tok_Comma then case Current_Token is when Tok_Assign => - Error_Msg_Parse ("missign type in " & Disp_Name (Kind)); + Error_Msg_Parse ("missing type in " & Disp_Name (Kind)); exit; when others => Error_Msg_Parse |