Fix docs about enabling low memory allocator.
Test: NA
Change-Id: I97e426b9685a0bca7f52185f3c3a88909db0e9d3
diff --git a/docs/native_allocator.md b/docs/native_allocator.md
index 13d9738..a97e705 100644
--- a/docs/native_allocator.md
+++ b/docs/native_allocator.md
@@ -9,9 +9,14 @@
It is important to note that there are two modes for a native allocator
to run in on Android. The first is the normal allocator, the second is
-called the svelte config, which is designed to run on memory constrained
-systems and be a bit slower, but take less RSS. To enable the svelte config,
-add this line to the `BoardConfig.mk` for the given target:
+called the low memory config, which is designed to run on memory constrained
+systems and be a bit slower, but take less RSS. To enable the low memory
+config, add this line to the `BoardConfig.mk` for the given target:
+
+ MALLOC_LOW_MEMORY := true
+
+This is valid starting with Android V (API level 35), before that the
+way to enable the low memory config is:
MALLOC_SVELTE := true