diff --git a/doc/jemalloc.xml.in b/doc/jemalloc.xml.in
index 46e505fc..308d0c65 100644
--- a/doc/jemalloc.xml.in
+++ b/doc/jemalloc.xml.in
@@ -189,15 +189,15 @@
The posix_memalign function
allocates size bytes of memory such that the
- allocation's base address is an even multiple of
+ allocation's base address is a multiple of
alignment, and returns the allocation in the value
pointed to by ptr. The requested
- alignment must be a power of 2 at least as large
- as sizeof(void *)
.
+ alignment must be a power of 2 at least as large as
+ sizeof(void *)
.
The aligned_alloc function
allocates size bytes of memory such that the
- allocation's base address is an even multiple of
+ allocation's base address is a multiple of
alignment. The requested
alignment must be a power of 2. Behavior is
undefined if size is not an integral multiple of