aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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