[Ada] Minor casing of " The " after a comma in docs and comments
authorPiotr Trojanek <trojanek@adacore.com>
Wed, 8 Apr 2020 21:01:13 +0000 (23:01 +0200)
committerPierre-Marie de Rodat <derodat@adacore.com>
Tue, 16 Jun 2020 13:07:17 +0000 (09:07 -0400)
2020-06-16  Piotr Trojanek  <trojanek@adacore.com>

gcc/ada/

* checks.adb, doc/gnat_ugn/the_gnat_compilation_model.rst,
einfo.ads, exp_ch5.adb, exp_ch7.adb, lib-xref.ads,
libgnat/g-spitbo.ads, make.adb, sem_aux.adb, sem_ch3.adb,
sem_ch4.adb, sem_ch5.adb, urealp.adb: Fix wrong casing.
* gnat_ugn.texi: Regenerate.

14 files changed:
gcc/ada/checks.adb
gcc/ada/doc/gnat_ugn/the_gnat_compilation_model.rst
gcc/ada/einfo.ads
gcc/ada/exp_ch5.adb
gcc/ada/exp_ch7.adb
gcc/ada/gnat_ugn.texi
gcc/ada/lib-xref.ads
gcc/ada/libgnat/g-spitbo.ads
gcc/ada/make.adb
gcc/ada/sem_aux.adb
gcc/ada/sem_ch3.adb
gcc/ada/sem_ch4.adb
gcc/ada/sem_ch5.adb
gcc/ada/urealp.adb

index 808a419ae9ba2e19d7c981d1a1d52813122ecf68..52cf61f5d7d12d7f168ebcfb7b5c65e5c344fcb8 100644 (file)
@@ -1960,7 +1960,7 @@ package body Checks is
    --      (1)  The bounds may not be known at compile time
    --      (2)  The check must take into account rounding or truncation.
    --      (3)  The range of type I may not be exactly representable in F.
-   --      (4)  For the rounding case, The end-points I'First - 0.5 and
+   --      (4)  For the rounding case, the end-points I'First - 0.5 and
    --           I'Last + 0.5 may or may not be in range, depending on the
    --           sign of  I'First and I'Last.
    --      (5)  X may be a NaN, which will fail any comparison
index 69fc95db15df4ca774dc72455611955d2b3dd787..b8729d08a06c642808447a6fd583c3bf74acbdc6 100644 (file)
@@ -3950,7 +3950,7 @@ The following example, provided as part of the GNAT examples, shows how
 to achieve procedural interfacing between Ada and C++ in both
 directions. The C++ class A has two methods. The first method is exported
 to Ada by the means of an extern C wrapper function. The second method
-calls an Ada subprogram. On the Ada side, The C++ calls are modelled by
+calls an Ada subprogram. On the Ada side, the C++ calls are modelled by
 a limited record with a layout comparable to the C++ class. The Ada
 subprogram, in turn, calls the C++ method. So, starting from the C++
 main program, the process passes back and forth between the two
index 1ca0faf6d916ed842c6e78177f4551bb21fe1522..ba15d489a0cf84ea1f617d4a9555e6aee9834332 100644 (file)
@@ -538,7 +538,7 @@ package Einfo is
 --    Block_Node (Node11)
 --       Defined in block entities. Points to the identifier in the
 --       Block_Statement itself. Used when retrieving the block construct
---       for finalization purposes, The block entity has an implicit label
+--       for finalization purposes, the block entity has an implicit label
 --       declaration in the enclosing declarative part, and has otherwise
 --       no direct connection in the tree with the block statement. The
 --       link is to the identifier (which is an occurrence of the entity)
index 3e37f15356626352f2e450b993f09f99c2db40f2..458b54503a248eaf531c3c58b397bc01d9bb0663 100644 (file)
@@ -3892,8 +3892,6 @@ package body Exp_Ch5 is
       Ind_Comp   : Node_Id;
       Iterator   : Entity_Id;
 
-   --  Start of processing for Expand_Iterator_Loop_Over_Array
-
    begin
       --  for Element of Array loop
 
index 5eec472302a7d385b1a4b1668dc35897d43027c2..6dfecac1f70f12ec9544b3b51d21fd8422f781e8 100644 (file)
@@ -368,7 +368,7 @@ package body Exp_Ch7 is
    --  Mode such subprograms must be handled as nested inside the (implicit)
    --  elaboration procedure that executes that statement part. To handle
    --  properly uplevel references we construct that subprogram explicitly,
-   --  to contain blocks and inner subprograms, The statement part becomes
+   --  to contain blocks and inner subprograms, the statement part becomes
    --  a call to this subprogram. This is only done if blocks are present
    --  in the statement list of the body. (It would be nice to unify this
    --  procedure with Check_Unnesting_In_Decls_Or_Stmts, if possible, since
index 1cbaf2f0a6a43e0e461c2855b96271230dfc1f1d..669199aefcec9907dc797832d6d3b876dd59e5ed 100644 (file)
@@ -6034,7 +6034,7 @@ The following example, provided as part of the GNAT examples, shows how
 to achieve procedural interfacing between Ada and C++ in both
 directions. The C++ class A has two methods. The first method is exported
 to Ada by the means of an extern C wrapper function. The second method
-calls an Ada subprogram. On the Ada side, The C++ calls are modelled by
+calls an Ada subprogram. On the Ada side, the C++ calls are modelled by
 a limited record with a layout comparable to the C++ class. The Ada
 subprogram, in turn, calls the C++ method. So, starting from the C++
 main program, the process passes back and forth between the two
index bc48957e19c4e3d7d4e399dae2d221569fe089e5..cb1e57ccaf3732c69915738952b080a93e9ba4a0 100644 (file)
@@ -592,7 +592,7 @@ package Lib.Xref is
 
    --  What we do in such cases is to gather nodes, where we would have liked
    --  to call Generate_Reference but we couldn't because we didn't know enough
-   --  into this table, Then we deal with generating references later on when
+   --  into this table, then we deal with generating references later on when
    --  we have sufficient information to do it right.
 
    type Deferred_Reference_Entry is record
index 4dfd647d04db639199cce7f28bbfc0a49e893c61..29a0606168c673fe951f458bbaf69c6f65c4ca53 100644 (file)
@@ -126,7 +126,7 @@ package GNAT.Spitbol is
       Len : Natural;
       Pad : Character := ' ') return VString;
    --  If the length of Str is greater than or equal to Len, then Str is
-   --  returned unchanged. Otherwise, The value returned is obtained by
+   --  returned unchanged. Otherwise, the value returned is obtained by
    --  concatenating Length (Str) - Len instances of the Pad character to
    --  the left hand side.
 
@@ -155,7 +155,7 @@ package GNAT.Spitbol is
       Len : Natural;
       Pad : Character := ' ') return VString;
    --  If the length of Str is greater than or equal to Len, then Str is
-   --  returned unchanged. Otherwise, The value returned is obtained by
+   --  returned unchanged. Otherwise, the value returned is obtained by
    --  concatenating Length (Str) - Len instances of the Pad character to
    --  the right hand side.
 
index 7e4f1c0676e1c5d68f23188e1dae395605e0d2d8..0034d1ad052046b9556276c6945bc960739910ba 100644 (file)
@@ -206,7 +206,7 @@ package body Make is
 
    procedure Add_Library_Search_Dir (Path : String);
    --  Call Add_Lib_Search_Dir with an absolute directory path. If Path is
-   --  relative path,, it is relative to the current working directory.
+   --  relative path, it is relative to the current working directory.
 
    procedure Add_Source_Search_Dir (Path : String);
    --  Call Add_Src_Search_Dir with an absolute directory path. If Path is a
index dbff7d8e20cc2549acb044c07b6bc7bb710d29d0..509c6047d22b54186ca488f9de7167154ae21f61 100644 (file)
@@ -344,8 +344,8 @@ package body Sem_Aux is
       --  predefined integer types. If the type is formal, it is also a first
       --  subtype, and its base type has no freeze node. On the other hand, a
       --  subtype of a generic formal is not its own first subtype. Its base
-      --  type, if anonymous, is attached to the formal type decl. from which
-      --  the first subtype is obtained.
+      --  type, if anonymous, is attached to the formal type declaration from
+      --  which the first subtype is obtained.
 
       if No (F) then
          if B = Base_Type (Standard_Integer) then
index ce9ea0af74e0eceb7203769d01b865a060ebc215..facd57c4d24cdf0a2cbebf45018d33489e5baa2b 100644 (file)
@@ -781,7 +781,7 @@ package body Sem_Ch3 is
          --  be available in the scope that encloses the protected declaration.
          --  Otherwise the type is in the scope enclosing the subprogram.
 
-         --  If the function has formals, The return type of a subprogram
+         --  If the function has formals, the return type of a subprogram
          --  declaration is analyzed in the scope of the subprogram (see
          --  Process_Formals) and thus the protected type, if present, is
          --  the scope of the current function scope.
index 545315605019ef9268e2e7f0f672ec7317ba35ca..92c5a7ac63616f42d5809f39b6973dfb6c9a305f 100644 (file)
@@ -3279,7 +3279,7 @@ package body Sem_Ch4 is
       --  When the type Address is a visible integer type, and the DEC
       --  system extension is visible, the predefined operator may be
       --  hidden as well, by one of the address operations in auxdec.
-      --  Finally, The abstract operations on address do not hide the
+      --  Finally, the abstract operations on address do not hide the
       --  predefined operator (this is the purpose of making them abstract).
 
       -----------------------------------
index 57939028869a1e65d7221f4252df26d43687a009..95ada066e716dc5995d8b02985eec2a0fd5fabe3 100644 (file)
@@ -2241,7 +2241,7 @@ package body Sem_Ch5 is
          begin
 
             --  If the domain of iteration is an array component that depends
-            --  on a discriminant, create actual subtype for it. preanalysis
+            --  on a discriminant, create actual subtype for it. Preanalysis
             --  does not generate the actual subtype of a selected component.
 
             if Nkind (Iter_Name) = N_Selected_Component
@@ -2456,7 +2456,7 @@ package body Sem_Ch5 is
 
                Check_Subtype_Indication (Etype (Def_Id));
 
-            --  For a predefined container, The type of the loop variable is
+            --  For a predefined container, the type of the loop variable is
             --  the Iterator_Element aspect of the container type.
 
             else
@@ -3885,7 +3885,7 @@ package body Sem_Ch5 is
                   Enter_Name (Id);
                end if;
 
-               --  In an element iterator, The loop parameter is a variable if
+               --  In an element iterator, the loop parameter is a variable if
                --  the domain of iteration (container or array) is a variable.
 
                if not Of_Present (I_Spec)
index cd45cc0f77b8ff48a1d260c4c85070f0628f8380..31151c5720ba32ffcdaf78cb887444a20643fc3b 100644 (file)
@@ -109,13 +109,13 @@ package body Urealp is
 
    function Decimal_Exponent_Hi (V : Ureal) return Int;
    --  Returns an estimate of the exponent of Val represented as a normalized
-   --  decimal number (non-zero digit before decimal point), The estimate is
+   --  decimal number (non-zero digit before decimal point), the estimate is
    --  either correct, or high, but never low. The accuracy of the estimate
    --  affects only the efficiency of the comparison routines.
 
    function Decimal_Exponent_Lo (V : Ureal) return Int;
    --  Returns an estimate of the exponent of Val represented as a normalized
-   --  decimal number (non-zero digit before decimal point), The estimate is
+   --  decimal number (non-zero digit before decimal point), the estimate is
    --  either correct, or low, but never high. The accuracy of the estimate
    --  affects only the efficiency of the comparison routines.