diff options
author | Piotr Trojanek <trojanek@adacore.com> | 2019-07-09 07:53:50 +0000 |
---|---|---|
committer | Pierre-Marie de Rodat <pmderodat@gcc.gnu.org> | 2019-07-09 07:53:50 +0000 |
commit | a569f21920e9f53489a59be84c44d6345bbbfa6d (patch) | |
tree | 15504c95a96d601b31cca86da6a2c46ac085a4d9 /gcc/ada/libgnat | |
parent | 995d28c7551ce6a65bd34355169106aab9ee65b6 (diff) | |
download | gcc-a569f21920e9f53489a59be84c44d6345bbbfa6d.zip gcc-a569f21920e9f53489a59be84c44d6345bbbfa6d.tar.gz gcc-a569f21920e9f53489a59be84c44d6345bbbfa6d.tar.bz2 |
[Ada] Reword "wild card" to "wildcard"
2019-07-09 Piotr Trojanek <trojanek@adacore.com>
gcc/ada/
* doc/gnat_rm/the_gnat_library.rst,
doc/gnat_ugn/building_executable_programs_with_gnat.rst,
erroutc.adb, libgnat/g-comlin.adb, libgnat/g-comlin.ads,
libgnat/g-regexp.ads, libgnat/g-regpat.ads,
libgnat/g-spipat.ads, libgnat/s-os_lib.ads,
libgnat/s-regexp.ads: Reword "wild card" to "wildcard".
* gnat_rm.texi, gnat_ugn.texi: Regenerate.
From-SVN: r273272
Diffstat (limited to 'gcc/ada/libgnat')
-rw-r--r-- | gcc/ada/libgnat/g-comlin.adb | 2 | ||||
-rw-r--r-- | gcc/ada/libgnat/g-comlin.ads | 6 | ||||
-rw-r--r-- | gcc/ada/libgnat/g-regexp.ads | 2 | ||||
-rw-r--r-- | gcc/ada/libgnat/g-regpat.ads | 2 | ||||
-rw-r--r-- | gcc/ada/libgnat/g-spipat.ads | 2 | ||||
-rw-r--r-- | gcc/ada/libgnat/s-os_lib.ads | 2 | ||||
-rw-r--r-- | gcc/ada/libgnat/s-regexp.ads | 2 |
7 files changed, 9 insertions, 9 deletions
diff --git a/gcc/ada/libgnat/g-comlin.adb b/gcc/ada/libgnat/g-comlin.adb index 0f527c6..29100af 100644 --- a/gcc/ada/libgnat/g-comlin.adb +++ b/gcc/ada/libgnat/g-comlin.adb @@ -443,7 +443,7 @@ package body GNAT.Command_Line is Parser.Current_Argument := Parser.Current_Argument + 1; - -- Could it be a file name with wild cards to expand? + -- Could it be a file name with wildcards to expand? if Do_Expansion then declare diff --git a/gcc/ada/libgnat/g-comlin.ads b/gcc/ada/libgnat/g-comlin.ads index 8306f9a..f1251b6 100644 --- a/gcc/ada/libgnat/g-comlin.ads +++ b/gcc/ada/libgnat/g-comlin.ads @@ -466,9 +466,9 @@ package GNAT.Command_Line is -- function should not be called before Getopt has returned ASCII.NUL. -- -- If Do_Expansion is True, then the parameter on the command line will - -- be considered as a filename with wild cards, and will be expanded. The + -- be considered as a filename with wildcards, and will be expanded. The -- matching file names will be returned one at a time. This is useful in - -- non-Unix systems for obtaining normal expansion of wild card references. + -- non-Unix systems for obtaining normal expansion of wildcard references. -- When there are no more arguments on the command line, this function -- returns an empty string. @@ -515,7 +515,7 @@ package GNAT.Command_Line is Pattern : String; Directory : String := ""; Basic_Regexp : Boolean := True); - -- Initialize a wild card expansion. The next calls to Expansion will + -- Initialize a wildcard expansion. The next calls to Expansion will -- return the next file name in Directory which match Pattern (Pattern -- is a regular expression, using only the Unix shell and DOS syntax if -- Basic_Regexp is True). When Directory is an empty string, the current diff --git a/gcc/ada/libgnat/g-regexp.ads b/gcc/ada/libgnat/g-regexp.ads index 50c992d..162738b 100644 --- a/gcc/ada/libgnat/g-regexp.ads +++ b/gcc/ada/libgnat/g-regexp.ads @@ -50,7 +50,7 @@ -- matching with the restriction that it matches entire strings. It -- is particularly useful for file name matching, and in particular -- it provides "globbing patterns" that are useful in implementing --- unix or DOS style wild card matching for file names. +-- unix or DOS style wildcard matching for file names. -- GNAT.Regpat (files g-regpat.ads/s-regpat.ads/g-regpat.adb) -- This is a more complete implementation of Unix-style regular diff --git a/gcc/ada/libgnat/g-regpat.ads b/gcc/ada/libgnat/g-regpat.ads index bac4d74..62fc2e8 100644 --- a/gcc/ada/libgnat/g-regpat.ads +++ b/gcc/ada/libgnat/g-regpat.ads @@ -53,7 +53,7 @@ -- matching with the restriction that it matches entire strings. It -- is particularly useful for file name matching, and in particular -- it provides "globbing patterns" that are useful in implementing --- unix or DOS style wild card matching for file names. +-- unix or DOS style wildcard matching for file names. -- GNAT.Regpat (files g-regpat.ads/s-regpat.ads/s-regpat.adb) -- This is a more complete implementation of Unix-style regular diff --git a/gcc/ada/libgnat/g-spipat.ads b/gcc/ada/libgnat/g-spipat.ads index 4d6a7f8..4dfc25a 100644 --- a/gcc/ada/libgnat/g-spipat.ads +++ b/gcc/ada/libgnat/g-spipat.ads @@ -48,7 +48,7 @@ -- matching with the restriction that it matches entire strings. It -- is particularly useful for file name matching, and in particular -- it provides "globbing patterns" that are useful in implementing --- unix or DOS style wild card matching for file names. +-- unix or DOS style wildcard matching for file names. -- GNAT.Regpat (files g-regpat.ads/g-regpat.adb) -- This is a more complete implementation of Unix-style regular diff --git a/gcc/ada/libgnat/s-os_lib.ads b/gcc/ada/libgnat/s-os_lib.ads index 8b21aa7..3e8c21d 100644 --- a/gcc/ada/libgnat/s-os_lib.ads +++ b/gcc/ada/libgnat/s-os_lib.ads @@ -246,7 +246,7 @@ package System.OS_Lib is Success : out Boolean; Mode : Copy_Mode := Copy; Preserve : Attribute := Time_Stamps); - -- Copy a file. Name must designate a single file (no wild cards allowed). + -- Copy a file. Name must designate a single file (no wildcards allowed). -- Pathname can be a filename or directory name. In the latter case Name -- is copied into the directory preserving the same file name. Mode -- defines the kind of copy, see above with the default being a normal diff --git a/gcc/ada/libgnat/s-regexp.ads b/gcc/ada/libgnat/s-regexp.ads index f521f91..4d9fb5b 100644 --- a/gcc/ada/libgnat/s-regexp.ads +++ b/gcc/ada/libgnat/s-regexp.ads @@ -77,7 +77,7 @@ package System.Regexp is -- See also regexp(1) man page on Unix systems for further details -- A second kind of regular expressions is provided. This one is more - -- like the wild card patterns used in file names by the Unix shell (or + -- like the wildcard patterns used in file names by the Unix shell (or -- DOS prompt) command lines. The grammar is the following: -- regexp ::= term |