diff options
author | Piotr Trojanek <trojanek@adacore.com> | 2020-09-08 23:19:36 +0200 |
---|---|---|
committer | Pierre-Marie de Rodat <derodat@adacore.com> | 2020-10-26 04:59:04 -0400 |
commit | f69ecf3bbad025688ec79e0090665774f254b761 (patch) | |
tree | 89fe8e8dfba0ba61f3d0e4a082c404daa73ad752 | |
parent | d111f09ee50cdf65bbcd8b6bd8c0e764431810ff (diff) | |
download | gcc-f69ecf3bbad025688ec79e0090665774f254b761.zip gcc-f69ecf3bbad025688ec79e0090665774f254b761.tar.gz gcc-f69ecf3bbad025688ec79e0090665774f254b761.tar.bz2 |
[Ada] Fix typos in error message for array delta aggregates
gcc/ada/
* sem_aggr.adb (Resolve_Delta_Array_Aggregate): Fix typos in
error message.
-rw-r--r-- | gcc/ada/sem_aggr.adb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/ada/sem_aggr.adb b/gcc/ada/sem_aggr.adb index 35c53bd..71b9bcc 100644 --- a/gcc/ada/sem_aggr.adb +++ b/gcc/ada/sem_aggr.adb @@ -3091,7 +3091,7 @@ package body Sem_Aggr is Base_Type (Index_Type) then Error_Msg_NE - ("choice does mat match index type of", + ("choice does not match index type of &", Choice, Typ); end if; else |