aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Kerrisk <mtk.manpages@gmail.com>2016-10-08 21:10:01 +0200
committerMichael Kerrisk <mtk.manpages@gmail.com>2016-10-08 21:10:01 +0200
commit3c841730e77771e2b6cc09e1f6779db103d89f28 (patch)
tree723069c0d85fda4bc2241606019faa9c830c4d44
parent2433365bdecc4e2cc8c2ae1ec5ad0493e9c89771 (diff)
downloadman-pages-3c841730e77771e2b6cc09e1f6779db103d89f28.tar.gz
mallinfo.3: tfix
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
-rw-r--r--man3/mallinfo.34
1 files changed, 2 insertions, 2 deletions
diff --git a/man3/mallinfo.3 b/man3/mallinfo.3
index e2bf1b5710..1a0203ecd2 100644
--- a/man3/mallinfo.3
+++ b/man3/mallinfo.3
@@ -121,7 +121,7 @@ T} Thread safety MT-Unsafe init const:mallopt
.TE
.BR mallinfo ()
-would access some global iternal objects. If modify them with non-atomically,
+would access some global internal objects. If modify them with non-atomically,
may get inconsistent results.
The identifier
.I mallopt
@@ -129,7 +129,7 @@ in
.I const:mallopt
mean that
.BR mallopt ()
-would modify the global iternal objects with atomics, that make sure
+would modify the global internal objects with atomics, that make sure
.BR mallinfo ()
is safe enough, others modify with non-atomically maybe not.
.SH CONFORMING TO