This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

PATCH: typos in libgomp, libiberty manual (was: [PING] typo patch)


Hello Gerald, all,

* Gerald Pfeifer wrote on Tue, Jan 30, 2007 at 12:39:12AM CET:
> On Mon, 29 Jan 2007, Ralf Wildenhues wrote:
> > Will do.  I have checked a few more manuals, so as replies to this
> > message I'll send about a half-dozen typo patches, most very small.
> 
> If it's just minor typos, feel free to combine half a dozen or so,
> and I'll try to take care of those.  It's mostly beasts such as the
> doc/install.texi patch where it's better to separate them out.

OK, thanks.  I grouped the ones needing different Cc:, separated
invoke.texi, and the remainder of the previous patch.  So here we go,
with the first one.  (Other ones not Cc:ed to you, Gerald; but all as
reply to your message.)

Cheers,
Ralf

:ADDPATCH documentation, libgomp/libiberty:

libgomp/ChangeLog:
2007-01-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>

	* libgomp.texi: Fix spacing after abbreviations.

libiberty/ChangeLog:
2007-01-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>

	* functions.texi: Fix a couple of typos.

Index: libgomp/libgomp.texi
===================================================================
--- libgomp/libgomp.texi	(revision 121314)
+++ libgomp/libgomp.texi	(working copy)
@@ -379,7 +379,7 @@
 @section @code{omp_set_nested} -- Enable/disable nested parallel regions
 @table @asis
 @item @emph{Description}:
-Enable or disable nested parallel regions, i. e. whether team members
+Enable or disable nested parallel regions, i.e.@: whether team members
 are allowed to create new teams. The function takes the language-specific 
 equivalent of @code{true} and @code{false}, where @code{true} enables 
 dynamic adjustment of team sizes and @code{false} disables it.
@@ -724,7 +724,7 @@
 @section @code{omp_get_wtick} -- Get timer precision
 @table @asis
 @item @emph{Description}:
-Gets the timer precision, i. e. the number of seconds between two 
+Gets the timer precision, i.e., the number of seconds between two 
 successive clock ticks.
 
 @item @emph{C/C++}:
@@ -820,7 +820,7 @@
 @cindex Environment Variable
 @table @asis
 @item @emph{Description}:
-Enable or disable nested parallel regions, i. e. whether team members
+Enable or disable nested parallel regions, i.e.@: whether team members
 are allowed to create new teams. The value of this environment variable 
 shall be @code{TRUE} or @code{FALSE}. If undefined, nested parallel 
 regions are disabled by default.
@@ -1117,7 +1117,7 @@
 
 The @var{DATA} argument is a pointer to a structure used to 
 communicate data in and out of the subfunction, as discussed
-above wrt FIRSTPRIVATE et al.
+above wrt.@: FIRSTPRIVATE et al.
 
 The @var{NUM_THREADS} argument is 1 if an IF clause is present
 and false, or the value of the NUM_THREADS clause, if
Index: libiberty/functions.texi
===================================================================
--- libiberty/functions.texi	(revision 121314)
+++ libiberty/functions.texi	(working copy)
@@ -153,7 +153,7 @@
 program is exited if a temporary directory can't be found (@code{mktemp}
 fails).  The buffer for the result is obtained with @code{xmalloc}.
 
-This function is provided for backwards compatability only.  Its use is
+This function is provided for backwards compatibility only.  Its use is
 not recommended.
 
 @end deftypefn
@@ -420,7 +420,7 @@
 @deftypefn Extension {unsigned int} hex_value (int @var{c})
 
 Returns the numeric equivalent of the given character when interpreted
-as a hexidecimal digit.  The result is undefined if you pass an
+as a hexadecimal digit.  The result is undefined if you pass an
 invalid hex digit.  Note that the value you pass will be cast to
 @code{unsigned char} within the macro.
 


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]