Fix typos in manual.
authorRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Sun, 7 Dec 2008 11:01:33 +0000 (12:01 +0100)
committerRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Sun, 7 Dec 2008 11:01:33 +0000 (12:01 +0100)
* doc/manywarnings.texi, doc/gnulib-intro.texi: Fix typos.

Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
ChangeLog
doc/gnulib-intro.texi
doc/manywarnings.texi

index f6ed815..6ff32bc 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2008-12-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
+
+       * doc/manywarnings.texi, doc/gnulib-intro.texi: Fix typos.
+
 2008-12-06  Bruno Haible  <bruno@clisp.org>
 
        * lib/c-stack.h (c_stack_action): Clarify possible side effects.
index fa282a4..a10ebeb 100644 (file)
@@ -16,7 +16,7 @@ maintain.
 
 @item
 Security: Gnulib provides functions that are immune against vulnerabilities
-that plagues the uses of the corresponding commonplace functions. For
+that plague the uses of the corresponding commonplace functions. For
 example, @code{asprintf}, @code{canonicalize_file_name} are not affected
 by buffer sizing problems that affect @code{sprintf}, @code{realpath}.
 @code{openat} does not have the race conditions that @code{open} has. Etc.
index 2ad807e..d3edf1f 100644 (file)
@@ -3,7 +3,7 @@
 
 The @code{manywarnings} module allows you to enable as many GCC warnings as
 possible for your package. The purpose is to protect against introducing new
-code that triggers warning that weren't already triggered by the existing code
+code that triggers warnings that weren't already triggered by the existing code
 base.
 
 An example use of the module is as follows:
@@ -25,11 +25,11 @@ done
 @end smallexample
 
 This module is meant to be used by developers who are not very experienced
-regarding the various GCC warning option. In the beginning you will set the
+regarding the various GCC warning options. In the beginning you will set the
 list of undesired warnings (@samp{nw} in the example above) to empty, and
 compile the package with all possible warnings enabled. The GCC option
 @code{-fdiagnostics-show-option}, available in GCC 4.1 or newer, helps
-understanding which warnings is originated from which option. Then you will
+understanding which warnings originated from which option. Then you will
 go through the list of warnings. You will likely deactivate warnings that
 occur often and don't point to mistakes in the code, by adding them to the
 @samp{nw} variable, then reconfiguring and recompiling. When warnings point