diff options
author | Robin Joy <robinkjoy@gmail.com> | 2016-12-07 19:50:46 +0530 |
---|---|---|
committer | Robin Joy <robinkjoy@gmail.com> | 2016-12-07 19:50:46 +0530 |
commit | 4d267a1e62ebe1dfa7b443eb70fb5fef3914e815 (patch) | |
tree | 2998b847b1b973861862120a5b37eb8f145f9482 /src/vhdl/parse.adb | |
parent | be36587ed1a04b3a9712f837c5b0e82422bd5adf (diff) | |
download | ghdl-4d267a1e62ebe1dfa7b443eb70fb5fef3914e815.tar.gz ghdl-4d267a1e62ebe1dfa7b443eb70fb5fef3914e815.tar.bz2 ghdl-4d267a1e62ebe1dfa7b443eb70fb5fef3914e815.zip |
Fix spelling in error message
Diffstat (limited to 'src/vhdl/parse.adb')
-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 |