https://gcc.gnu.org/g:641ff83897203bf181dc58219abbb12a916deb7a
commit r16-9006-g641ff83897203bf181dc58219abbb12a916deb7a Author: Vadim Godunko <[email protected]> Date: Tue Mar 3 08:49:34 2026 +0400 ada: Fix casing of reserved word. gcc/ada/ChangeLog: * doc/gnat_rm/implementation_of_ada_2022_features.rst: Fix casing. * gnat_rm.texi: Regenerate. Diff: --- gcc/ada/doc/gnat_rm/implementation_of_ada_2022_features.rst | 2 +- gcc/ada/gnat_rm.texi | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gcc/ada/doc/gnat_rm/implementation_of_ada_2022_features.rst b/gcc/ada/doc/gnat_rm/implementation_of_ada_2022_features.rst index f06f37f5feda..48289b24a44c 100644 --- a/gcc/ada/doc/gnat_rm/implementation_of_ada_2022_features.rst +++ b/gcc/ada/doc/gnat_rm/implementation_of_ada_2022_features.rst @@ -356,7 +356,7 @@ http://www.ada-auth.org/AI12-SUMMARY.HTML. .. code:: - Array (1 .. 10) of Integer := + array (1 .. 10) of Integer := (for I in 1 .. 10 => I ** 2); type Matrix is array diff --git a/gcc/ada/gnat_rm.texi b/gcc/ada/gnat_rm.texi index 5a6d8372476d..f4359db64e3c 100644 --- a/gcc/ada/gnat_rm.texi +++ b/gcc/ada/gnat_rm.texi @@ -27791,7 +27791,7 @@ Ada issue AI12-061 introduces a new construct in array aggregates allowing component associations to be parameterized by a loop variable, for example: @example -Array (1 .. 10) of Integer := +array (1 .. 10) of Integer := (for I in 1 .. 10 => I ** 2); type Matrix is array
