]> git.ipfire.org Git - thirdparty/man-pages.git/commitdiff
execve.2: tfix
authorMichael Kerrisk <mtk.manpages@gmail.com>
Mon, 6 Jul 2020 10:35:57 +0000 (12:35 +0200)
committerMichael Kerrisk <mtk.manpages@gmail.com>
Mon, 6 Jul 2020 10:35:57 +0000 (12:35 +0200)
Reported-by: Helge Kreutzmann <debian@helgefjell.de>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
man2/execve.2

index 295a3139966a564e66cf5ff93b5a04ccff32216b..62becbdd28b0baadfdc4dfdac26f10d677c10a2e 100644 (file)
@@ -68,7 +68,7 @@ By convention, the first of these strings (i.e.,
 should contain the filename associated with the file being executed.
 The
 .I argv
-array must be terminated by a NULL pointer
+array must be terminated by a NULL pointer.
 (Thus, in the new program,
 .IR argv[argc]
 will be NULL.)
@@ -77,7 +77,7 @@ will be NULL.)
 \fBkey=value\fP, which are passed as the environment of the new program.
 The
 .I envp
-array must be terminated by a NULL pointer
+array must be terminated by a NULL pointer.
 .PP
 The argument vector and environment can be accessed by the
 new program's main function, when it is defined as: