summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Kerrisk <mtk.manpages@gmail.com>2009-07-25 08:51:28 +0200
committerMichael Kerrisk <mtk.manpages@gmail.com>2009-07-25 08:51:28 +0200
commite80aa4d865cc7efd10b83380087b1e837e976bae (patch)
tree98199cb1b8872b26ee35d4f84a5bc3e03ea6acbb
parent0f846d3c92735386f66cf7c578ff9bb73df6b50d (diff)
Removed trailing white space at end of lines
-rw-r--r--Changes4
-rw-r--r--man3/daemon.32
-rw-r--r--man3/fmemopen.32
3 files changed, 4 insertions, 4 deletions
diff --git a/Changes b/Changes
index 71a64e75f..681ac27bc 100644
--- a/Changes
+++ b/Changes
@@ -197,8 +197,8 @@ complex.7
Reimar Döffinger
Fix type used in example code
man complex (from release 3.18) contains the following code:
- complex z = cexp(I * pi);
- Reading the C99 standard, "complex" is not a valid type,
+ complex z = cexp(I * pi);
+ Reading the C99 standard, "complex" is not a valid type,
and several compilers (Intel ICC, ARM RVCT) will refuse to compile.
It should be
double complex z = cexp(I * pi); instead.
diff --git a/man3/daemon.3 b/man3/daemon.3
index a03c1ab85..d75b269dd 100644
--- a/man3/daemon.3
+++ b/man3/daemon.3
@@ -58,7 +58,7 @@ is zero,
.BR daemon ()
changes the process's current working directory
to the root directory ("/");
-otherwise,
+otherwise,
.PP
If
.I noclose
diff --git a/man3/fmemopen.3 b/man3/fmemopen.3
index f1688d57b..0eb263ef2 100644
--- a/man3/fmemopen.3
+++ b/man3/fmemopen.3
@@ -175,7 +175,7 @@ and are not widely available on other systems.
.SH NOTES
There is no file descriptor associated with the file stream
returned by these functions
-(i.e.,
+(i.e.,
.BR fileno (3)
will return an error if called on the returned stream).
.SH BUGS