changeset 10853:d3523c6712b4

Fix typos in manual. * doc/manywarnings.texi, doc/gnulib-intro.texi: Fix typos. Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
author Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
date Sun, 07 Dec 2008 12:01:33 +0100
parents 024e032be5f2
children 4e7233d13083
files ChangeLog doc/gnulib-intro.texi doc/manywarnings.texi
diffstat 3 files changed, 8 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- 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.
--- a/doc/gnulib-intro.texi
+++ b/doc/gnulib-intro.texi
@@ -16,7 +16,7 @@
 
 @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.
--- a/doc/manywarnings.texi
+++ b/doc/manywarnings.texi
@@ -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 @@
 @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