aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Botcazou <ebotcazou@adacore.com>2024-05-11 01:14:38 +0200
committerMarc Poulhiès <poulhies@adacore.com>2024-06-20 10:50:51 +0200
commitcfd7b02a0ca102e12bc7233a45834683b0b247e6 (patch)
treeb399f3cf750e4aff69a67a75cf7919a0b5f3afc0
parent20f5d5e09df70e7563242059a4d2bf1e3b07bcaa (diff)
downloadgcc-cfd7b02a0ca102e12bc7233a45834683b0b247e6.zip
gcc-cfd7b02a0ca102e12bc7233a45834683b0b247e6.tar.gz
gcc-cfd7b02a0ca102e12bc7233a45834683b0b247e6.tar.bz2
ada: Fix minor issues in comments
gcc/ada/ * mutably_tagged.ads: Fix minor issues in comments throughout.
-rw-r--r--gcc/ada/mutably_tagged.ads21
1 files changed, 10 insertions, 11 deletions
diff --git a/gcc/ada/mutably_tagged.ads b/gcc/ada/mutably_tagged.ads
index b1e393f..6b3b10d 100644
--- a/gcc/ada/mutably_tagged.ads
+++ b/gcc/ada/mutably_tagged.ads
@@ -6,7 +6,7 @@
-- --
-- S p e c --
-- --
--- Copyright (C) 2024-2024, Free Software Foundation, Inc. --
+-- Copyright (C) 2024, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
@@ -36,8 +36,8 @@ package Mutably_Tagged is
-- This package implements mutably tagged types via the Size'class aspect
-- which enables the creation of class-wide types with a specific maximum
-- size. This allows such types to be used directly in record components,
- -- in object declarations without an initial expression, and to be
- -- assigned a value from any type in a mutably tagged type's hierarchy.
+ -- in object declarations without an initial expression, and to be assigned
+ -- a value from any type in a mutably tagged type's hierarchy.
-- For example, this structure allows Base_Type and its derivatives to be
-- treated as components with a predictable size:
@@ -49,17 +49,16 @@ package Mutably_Tagged is
-- Component : Base_Type'Class;
-- end record;
- -- The core of thier implementation involve creating an "equivalent" type
+ -- The core of their implementation involves creating an "equivalent" type
-- for each class-wide type that adheres to the Size'Class constraint. This
- -- is achieved using the function Make_CW_Equivalent_Type, which
- -- generates a type that is compatible in size and structure with any
+ -- is achieved by using the function Make_CW_Equivalent_Type from Exp_Util,
+ -- which generates a type that is compatible in size and structure with any
-- derived type of the base class-wide type.
- -- Once the class-wide equivalent type is generated, all references to
- -- mutably tagged typed object declarations get rewritten to be
- -- declarations of said equivalent type. References to these objects also
- -- then get wrapped in unchecked conversions to the proper mutably tagged
- -- class-wide type.
+ -- Once the class-wide equivalent type is generated, all declarations of
+ -- mutably tagged typed objects get rewritten as declarations of objects
+ -- with the equivalent type. References to these objects also then get
+ -- wrapped in unchecked conversions to the mutably tagged class-wide type.
function Corresponding_Mutably_Tagged_Type
(CW_Equiv_Typ : Entity_Id) return Entity_Id;