From mboxrd@z Thu Jan 1 00:00:00 1970 From: Rami Rosen Subject: [PATCH] doc: fix a typo in sample apps guide. Date: Sat, 17 Jun 2017 23:13:45 +0300 Message-ID: <1497730425-9449-1-git-send-email-rami.rosen@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Rami Rosen To: dev@dpdk.org Return-path: Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id DEB30374 for ; Sat, 17 Jun 2017 22:13:51 +0200 (CEST) List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" This patch fixes a trivial typo in the sample apps guide. commit 35b09d76f89e ("doc: use corelist instead of coremask") replaced the usage of coremask (-c) with corelist (-l). As a result of this patch, we have ./build/ipv4_multicast -l 0-3 -n 3 -- -p 0x3 -q 1 in the sample app guide, while the explanation immediately following says: In this command: • The -c option enables cores 0, 1, 2 and 3 This patch fixes the explanation to have "-l" instead of "-c". Signed-off-by: Rami Rosen --- doc/guides/sample_app_ug/ipv4_multicast.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/guides/sample_app_ug/ipv4_multicast.rst b/doc/guides/sample_app_ug/ipv4_multicast.rst index 3e30f5090e68..7d2b27e7c3ed 100644 --- a/doc/guides/sample_app_ug/ipv4_multicast.rst +++ b/doc/guides/sample_app_ug/ipv4_multicast.rst @@ -117,7 +117,7 @@ Typically, to run the IPv4 Multicast sample application, issue the following com In this command: -* The -c option enables cores 0, 1, 2 and 3 +* The -l option enables cores 0, 1, 2 and 3 * The -n option specifies 3 memory channels -- 2.7.4