about summary refs log tree commit diff
path: root/malloc
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2020-10-06 05:15:11 -0700
committerH.J. Lu <hjl.tools@gmail.com>2020-10-06 05:15:11 -0700
commit862897d2addfacc2af85b571ebf5a82659455e8c (patch)
tree45d6ddca904396972dbe09e93472ab885e19c7b0 /malloc
parent78e09591a59fb4cb634cde28089924383151fcfe (diff)
downloadglibc-862897d2addfacc2af85b571ebf5a82659455e8c.tar.gz
glibc-862897d2addfacc2af85b571ebf5a82659455e8c.tar.xz
glibc-862897d2addfacc2af85b571ebf5a82659455e8c.zip
Replace Minumum/minumum with Minimum/minimum
Replace Minumum/minumum in comments with Minimum/minimum.
Diffstat (limited to 'malloc')
-rw-r--r--malloc/malloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/malloc/malloc.c b/malloc/malloc.c
index cd9933b4e5..5b87bdb081 100644
--- a/malloc/malloc.c
+++ b/malloc/malloc.c
@@ -505,7 +505,7 @@ void *(*__morecore)(ptrdiff_t) = __default_morecore;
   if no space is available. Additionally, on failure, errno is
   set to ENOMEM on ANSI C systems.
 
-  If n is zero, malloc returns a minumum-sized chunk. (The minimum
+  If n is zero, malloc returns a minimum-sized chunk. (The minimum
   size is 16 bytes on most 32bit systems, and 24 or 32 bytes on 64bit
   systems.)  On most systems, size_t is an unsigned type, so calls
   with negative arguments are interpreted as requests for huge amounts