doc: fix typo in KNI sample app guide
authorRami Rosen <rami.rosen@intel.com>
Fri, 29 Dec 2017 12:08:13 +0000 (14:08 +0200)
committerThomas Monjalon <thomas@monjalon.net>
Thu, 11 Jan 2018 17:40:58 +0000 (18:40 +0100)
This trivial patch fixes a typo in sample apps guide, in
the kernel nic interface (kni) section.
Using "-config", as it is now today in this doc, will not
work and will emit an error; it should be "--config" instead,
and this patch fixes it accordingly.

Fixes: d0dff9ba445e ("doc: sample application user guide")

Signed-off-by: Rami Rosen <rami.rosen@intel.com>
Acked-by: Ferruh Yigit <ferruh.yigit@intel.com>
doc/guides/sample_app_ug/kernel_nic_interface.rst

index e1ac415..67f2140 100644 (file)
@@ -181,7 +181,7 @@ and one lcore of kernel thread for each port:
 
 .. code-block:: console
 
-    ./build/kni -l 4-7 -n 4 -- -P -p 0x3 -config="(0,4,6,8),(1,5,7,9)"
+    ./build/kni -l 4-7 -n 4 -- -P -p 0x3 --config="(0,4,6,8),(1,5,7,9)"
 
 KNI Operations
 --------------