doc: memory: Fix SYS_MEM_BLOCKS_DEFINE_STATIC description

Fix SYS_MEM_BLOCKS_DEFINE_STATIC() description.
Use a "memory blocks allocator" instead of "slab",
which is most probably was copy-pasted from
the previous "slab" chapter by mistake.

Signed-off-by: Andrej Butok <andrey.butok@nxp.com>
This commit is contained in:
Andrej Butok 2023-11-06 09:21:39 +01:00 committed by Anas Nashif
parent 237ec65ad3
commit 95a5f5178f

View file

@ -112,7 +112,7 @@ to a 4-byte boundary:
SYS_MEM_BLOCKS_DEFINE(allocator, 64, 4, 4);
Similarly, you can define a memory slab in private scope:
Similarly, you can define a memory blocks allocator in private scope:
.. code-block:: c