From mboxrd@z Thu Jan 1 00:00:00 1970 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) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga104.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 17 Jun 2017 13:13:50 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.39,353,1493708400"; d="scan'208";a="100680151" Received: from imail001.iil.intel.com ([10.184.207.12]) by orsmga002.jf.intel.com with ESMTP; 17 Jun 2017 13:13:49 -0700 Received: from cghost.iil.intel.com (cghost.iil.intel.com [143.185.141.67]) by imail001.iil.intel.com with ESMTP id v5HKDkRk009483; Sat, 17 Jun 2017 23:13:46 +0300 From: Rami Rosen To: dev@dpdk.org Cc: Rami Rosen Date: Sat, 17 Jun 2017 23:13:45 +0300 Message-Id: <1497730425-9449-1-git-send-email-rami.rosen@intel.com> X-Mailer: git-send-email 2.7.4 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH] doc: fix a typo in sample apps guide. X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2017 20:13:52 -0000 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