docs/core-api: memory-allocation: fix typo
authorChris Packham <chris.packham@alliedtelesis.co.nz>
Thu, 24 Oct 2019 19:50:14 +0000 (08:50 +1300)
committerJonathan Corbet <corbet@lwn.net>
Tue, 29 Oct 2019 10:44:48 +0000 (04:44 -0600)
"on the safe size" should be "on the safe side".

Signed-off-by: Chris Packham <chris.packham@alliedtelesis.co.nz>
Acked-by: Mike Rapoport <rppt@linux.ibm.com>
Reviewed-by: Matthew Wilcox (Oracle) <willy@infradead.org>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Documentation/core-api/memory-allocation.rst

index 939e3df..dcf851b 100644 (file)
@@ -88,7 +88,7 @@ Selecting memory allocator
 ==========================
 
 The most straightforward way to allocate memory is to use a function
-from the :c:func:`kmalloc` family. And, to be on the safe size it's
+from the :c:func:`kmalloc` family. And, to be on the safe side it's
 best to use routines that set memory to zero, like
 :c:func:`kzalloc`. If you need to allocate memory for an array, there
 are :c:func:`kmalloc_array` and :c:func:`kcalloc` helpers.