about summary refs log tree commit diff
path: root/manual/startup.texi
diff options
context:
space:
mode:
authorRical Jasan <ricaljasan@pacific.net>2016-10-06 12:19:25 +0530
committerSiddhesh Poyarekar <siddhesh@sourceware.org>2016-10-06 12:19:25 +0530
commit954cbda0faae0f8e5d47b3a536ef37d8fb2c2626 (patch)
tree9edcf936b05ddf1864c86a71ee6e91b5582719eb /manual/startup.texi
parent16c7d1ec26ecf4cbd3a128a23cf2a8ab495a89b8 (diff)
downloadglibc-954cbda0faae0f8e5d47b3a536ef37d8fb2c2626.tar.gz
glibc-954cbda0faae0f8e5d47b3a536ef37d8fb2c2626.tar.xz
glibc-954cbda0faae0f8e5d47b3a536ef37d8fb2c2626.zip
Manual typos: The Basic Program/System Interface
2016-05-06  Rical Jasan  <ricaljasan@pacific.net>

	* manual/argp.texi: Fix typos in the manual.
	* manual/getopt.texi: Likewise.
	* manual/startup.texi: Likewise.
Diffstat (limited to 'manual/startup.texi')
-rw-r--r--manual/startup.texi8
1 files changed, 4 insertions, 4 deletions
diff --git a/manual/startup.texi b/manual/startup.texi
index 9a091a5151..e4c983ada6 100644
--- a/manual/startup.texi
+++ b/manual/startup.texi
@@ -18,7 +18,7 @@ one program.
 
 Note that we are using a specific definition of ``program'' for the
 purposes of this manual, which corresponds to a common definition in the
-context of Unix system.  In popular usage, ``program'' enjoys a much
+context of Unix systems.  In popular usage, ``program'' enjoys a much
 broader definition; it can refer for example to a system's kernel, an
 editor macro, a complex package of software, or a discrete section of
 code executing within a process.
@@ -228,9 +228,9 @@ available.
 @c  strncmp dup ok
 
 The @var{optionp} parameter must be a pointer to a variable containing
-the address of the string to process.  When the function returns the
+the address of the string to process.  When the function returns, the
 reference is updated to point to the next suboption or to the
-terminating @samp{\0} character if there is no more suboption available.
+terminating @samp{\0} character if there are no more suboptions available.
 
 The @var{tokens} parameter references an array of strings containing the
 known suboptions.  All strings must be @samp{\0} terminated and to mark
@@ -441,7 +441,7 @@ environment.  If the environment contains an entry with the key
 equivalent to a call to @code{putenv} when the @var{value} part of the
 string is empty.
 
-The function return @code{-1} if @var{name} is a null pointer, points to
+The function returns @code{-1} if @var{name} is a null pointer, points to
 an empty string, or points to a string containing a @code{=} character.
 It returns @code{0} if the call succeeded.