]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
[Ada] Consistent spelling of "i.e." in docs and comments
authorpmderodat <pmderodat@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 17 Jul 2018 08:07:47 +0000 (08:07 +0000)
committerpmderodat <pmderodat@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 17 Jul 2018 08:07:47 +0000 (08:07 +0000)
2018-07-17  Piotr Trojanek  <trojanek@adacore.com>

gcc/ada/

* einfo.ads, libgnat/g-comlin.ads: Minor change "ie" to "i.e." in docs
and comments.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@262784 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ada/ChangeLog
gcc/ada/einfo.ads
gcc/ada/libgnat/g-comlin.ads

index 83196d3b61d36fb338cb47a8a4f7939fcb87c84b..d9d4f24653f00c454f622ce49cbeecb4b42d1bae 100644 (file)
@@ -1,3 +1,8 @@
+2018-07-17  Piotr Trojanek  <trojanek@adacore.com>
+
+       * einfo.ads, libgnat/g-comlin.ads: Minor change "ie" to "i.e." in docs
+       and comments.
+
 2018-07-17  Justin Squirek  <squirek@adacore.com>
 
        * libgnat/s-os_lib.adb (Argument_String_To_List): Fix trimming of
index bb9ec109da951781730499c783cf67beeedb1c41..8e5bf659533dcff67ad916c397cb4d03a3c760fc 100644 (file)
@@ -1034,7 +1034,7 @@ package Einfo is
 --       base type).
 --
 --       In all other cases Discriminant_Constraint contains the empty
---       Elist (ie it is initialized with a call to New_Elmt_List).
+--       Elist (i.e. it is initialized with a call to New_Elmt_List).
 
 --    Discriminant_Default_Value (Node20)
 --       Defined in discriminants. Points to the node representing the
index 1afa57b6d82975d8d27357e35f482c3afe0e6be7..da49ce92ebee5b4e38707041fbaf2c7b95aba093 100644 (file)
@@ -703,7 +703,8 @@ package GNAT.Command_Line is
    --  automatically generated list of supported switches.
 
    procedure Display_Help (Config : Command_Line_Configuration);
-   --  Display the help for the tool (ie its usage, and its supported switches)
+   --  Display the help for the tool (i.e. its usage, and its supported
+   --  switches).
 
    function Get_Switches
      (Config      : Command_Line_Configuration;
@@ -843,9 +844,9 @@ package GNAT.Command_Line is
    --
    --  This function can be used to reset Cmd by passing an empty string
    --
-   --  If an invalid switch is found on the command line (ie wasn't defined in
-   --  the configuration via Define_Switch), and the configuration wasn't set
-   --  to accept all switches (by defining "*" as a valid switch), then an
+   --  If an invalid switch is found on the command line (i.e. wasn't defined
+   --  in the configuration via Define_Switch), and the configuration wasn't
+   --  set to accept all switches (by defining "*" as a valid switch), then an
    --  exception Invalid_Switch is raised. The exception message indicates the
    --  invalid switch.
 
@@ -896,7 +897,7 @@ package GNAT.Command_Line is
    --     -from bar
    --
    --  Note however that Getopt doesn't know how to handle ":" as a separator.
-   --  So the recommendation is to declare the switch as "-from!" (ie no
+   --  So the recommendation is to declare the switch as "-from!" (i.e. no
    --  space between the switch and its parameter). Then Getopt will return
    --  ":bar" as the parameter, and you can trim the ":" in your application.
    --