From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id 0E8EE95AB for ; Fri, 13 Nov 2015 18:55:16 +0100 (CET) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga102.jf.intel.com with ESMTP; 13 Nov 2015 09:55:16 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.20,288,1444719600"; d="scan'208";a="819320318" Received: from irvmail001.ir.intel.com ([163.33.26.43]) by orsmga001.jf.intel.com with ESMTP; 13 Nov 2015 09:55:15 -0800 Received: from sivswdev02.ir.intel.com (sivswdev02.ir.intel.com [10.237.217.46]) by irvmail001.ir.intel.com (8.14.3/8.13.6/MailSET/Hub) with ESMTP id tADHtEg2032662; Fri, 13 Nov 2015 17:55:14 GMT Received: from sivswdev02.ir.intel.com (localhost [127.0.0.1]) by sivswdev02.ir.intel.com with ESMTP id tADHtECX026368; Fri, 13 Nov 2015 17:55:14 GMT Received: (from jmcnam2@localhost) by sivswdev02.ir.intel.com with id tADHtEA0026364; Fri, 13 Nov 2015 17:55:14 GMT From: John McNamara To: dev@dpdk.org Date: Fri, 13 Nov 2015 17:55:11 +0000 Message-Id: <1447437311-26330-1-git-send-email-john.mcnamara@intel.com> X-Mailer: git-send-email 1.7.4.1 Subject: [dpdk-dev] [PATCH] doc: fix repeated typo in sample app docs X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Nov 2015 17:55:17 -0000 Fix repeated typo in the "Compiling the Application" section of almost all of the sample app docs. This generally gets copied into new sample app guides. Signed-off-by: John McNamara --- doc/guides/sample_app_ug/kernel_nic_interface.rst | 4 ++-- doc/guides/sample_app_ug/l2_forward_job_stats.rst | 3 ++- doc/guides/sample_app_ug/l2_forward_real_virtual.rst | 3 ++- doc/guides/sample_app_ug/l3_forward.rst | 3 ++- doc/guides/sample_app_ug/l3_forward_power_man.rst | 3 ++- doc/guides/sample_app_ug/qos_scheduler.rst | 3 ++- doc/guides/sample_app_ug/timer.rst | 3 ++- doc/guides/sample_app_ug/vmdq_dcb_forwarding.rst | 3 ++- 8 files changed, 16 insertions(+), 9 deletions(-) diff --git a/doc/guides/sample_app_ug/kernel_nic_interface.rst b/doc/guides/sample_app_ug/kernel_nic_interface.rst index f1deca9..c8fc10a 100644 --- a/doc/guides/sample_app_ug/kernel_nic_interface.rst +++ b/doc/guides/sample_app_ug/kernel_nic_interface.rst @@ -87,8 +87,8 @@ Compile the application as follows: .. code-block:: console - export RTE_SDK=/path/to/rte_sdk cd - ${RTE_SDK}/examples/kni + export RTE_SDK=/path/to/rte_sdk + cd ${RTE_SDK}/examples/kni #. Set the target (a default target is used if not specified) diff --git a/doc/guides/sample_app_ug/l2_forward_job_stats.rst b/doc/guides/sample_app_ug/l2_forward_job_stats.rst index 6cbf627..acf6273 100644 --- a/doc/guides/sample_app_ug/l2_forward_job_stats.rst +++ b/doc/guides/sample_app_ug/l2_forward_job_stats.rst @@ -101,7 +101,8 @@ Compiling the Application .. code-block:: console - export RTE_SDK=/path/to/rte_sdk cd ${RTE_SDK}/examples/l2fwd-jobstats + export RTE_SDK=/path/to/rte_sdk + cd ${RTE_SDK}/examples/l2fwd-jobstats #. Set the target (a default target is used if not specified). For example: diff --git a/doc/guides/sample_app_ug/l2_forward_real_virtual.rst b/doc/guides/sample_app_ug/l2_forward_real_virtual.rst index 9334e75..65a3cec 100644 --- a/doc/guides/sample_app_ug/l2_forward_real_virtual.rst +++ b/doc/guides/sample_app_ug/l2_forward_real_virtual.rst @@ -101,7 +101,8 @@ Compiling the Application .. code-block:: console - export RTE_SDK=/path/to/rte_sdk cd ${RTE_SDK}/examples/l2fwd + export RTE_SDK=/path/to/rte_sdk + cd ${RTE_SDK}/examples/l2fwd #. Set the target (a default target is used if not specified). For example: diff --git a/doc/guides/sample_app_ug/l3_forward.rst b/doc/guides/sample_app_ug/l3_forward.rst index 6ca03f9..34a84f1 100644 --- a/doc/guides/sample_app_ug/l3_forward.rst +++ b/doc/guides/sample_app_ug/l3_forward.rst @@ -69,7 +69,8 @@ To compile the application: .. code-block:: console - export RTE_SDK=/path/to/rte_sdk cd ${RTE_SDK}/examples/l3fwd + export RTE_SDK=/path/to/rte_sdk + cd ${RTE_SDK}/examples/l3fwd #. Set the target (a default target is used if not specified). For example: diff --git a/doc/guides/sample_app_ug/l3_forward_power_man.rst b/doc/guides/sample_app_ug/l3_forward_power_man.rst index 39c2ea5..ac688f8 100644 --- a/doc/guides/sample_app_ug/l3_forward_power_man.rst +++ b/doc/guides/sample_app_ug/l3_forward_power_man.rst @@ -111,7 +111,8 @@ To compile the application: .. code-block:: console - export RTE_SDK=/path/to/rte_sdk cd ${RTE_SDK}/examples/l3fwd-power + export RTE_SDK=/path/to/rte_sdk + cd ${RTE_SDK}/examples/l3fwd-power #. Set the target (a default target is used if not specified). For example: diff --git a/doc/guides/sample_app_ug/qos_scheduler.rst b/doc/guides/sample_app_ug/qos_scheduler.rst index ffa8ee2..7f9e925 100644 --- a/doc/guides/sample_app_ug/qos_scheduler.rst +++ b/doc/guides/sample_app_ug/qos_scheduler.rst @@ -64,7 +64,8 @@ To compile the application: .. code-block:: console - export RTE_SDK=/path/to/rte_sdk cd ${RTE_SDK}/examples/qos_sched + export RTE_SDK=/path/to/rte_sdk + cd ${RTE_SDK}/examples/qos_sched #. Set the target (a default target is used if not specified). For example: diff --git a/doc/guides/sample_app_ug/timer.rst b/doc/guides/sample_app_ug/timer.rst index ee0a732..e4de359 100644 --- a/doc/guides/sample_app_ug/timer.rst +++ b/doc/guides/sample_app_ug/timer.rst @@ -41,7 +41,8 @@ Compiling the Application .. code-block:: console - export RTE_SDK=/path/to/rte_sdk cd ${RTE_SDK}/examples/timer + export RTE_SDK=/path/to/rte_sdk + cd ${RTE_SDK}/examples/timer #. Set the target (a default target is used if not specified). For example: diff --git a/doc/guides/sample_app_ug/vmdq_dcb_forwarding.rst b/doc/guides/sample_app_ug/vmdq_dcb_forwarding.rst index 6fb0f0b..9140a22 100644 --- a/doc/guides/sample_app_ug/vmdq_dcb_forwarding.rst +++ b/doc/guides/sample_app_ug/vmdq_dcb_forwarding.rst @@ -93,7 +93,8 @@ Compiling the Application .. code-block:: console - export RTE_SDK=/path/to/rte_sdk cd ${RTE_SDK}/examples/vmdq_dcb + export RTE_SDK=/path/to/rte_sdk + cd ${RTE_SDK}/examples/vmdq_dcb #. Set the target (a default target is used if not specified). For example: -- 1.8.1.4