docs: better docs, mv doxygen to sphinx
[vpp.git] / docs / gettingstarted / troubleshooting / mem.rst
similarity index 95%
rename from docs/troubleshooting/mem.rst
rename to docs/gettingstarted/troubleshooting/mem.rst
index 207b277..630b0af 100644 (file)
@@ -66,7 +66,7 @@ libc memory traces
 ==================
 
 Internal VPP memory allocations rely on VPP main-heap, however when using
-external libraries, esp. in plugins (eg. OpenSSL library used by the IKEv2
+external libraries, esp. in plugins (e.g. OpenSSL library used by the IKEv2
 plugin), those external libraries usually manages memory using the standard
 libc malloc()/free()/... calls. This, in turn, makes use of the default
 libc heap.
@@ -78,7 +78,7 @@ In order to enable the use of standard VPP debugging tools, this library
 replaces standard libc memory management calls with version using VPP
 main-heap.
 
-To use it, you need to use the `LD_PRELOAD` mechanism, eg.
+To use it, you need to use the `LD_PRELOAD` mechanism, e.g.
 
 .. code-block:: console