From mboxrd@z Thu Jan 1 00:00:00 1970 From: Rami Rosen Subject: [PATCH ] doc: fix two typos in contributing guide Date: Fri, 15 Mar 2019 11:19:00 +0200 Message-ID: <20190315091900.18996-1-ramirose@gmail.com> Mime-Version: 1.0 Content-Transfer-Encoding: 8bit Cc: john.mcnamara@intel.com, marko.kovacevic@intel.com, bruce.richardson@intel.com, Rami Rosen To: dev@dpdk.org Return-path: Received: from mail-wm1-f66.google.com (mail-wm1-f66.google.com [209.85.128.66]) by dpdk.org (Postfix) with ESMTP id 35B352986 for ; Fri, 15 Mar 2019 10:19:08 +0100 (CET) Received: by mail-wm1-f66.google.com with SMTP id f3so5801939wmj.4 for ; Fri, 15 Mar 2019 02:19:08 -0700 (PDT) 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 two typos in the coding style part of DPDK contributing guide: - The header entry should have .h file instead of .c file. - The will->This will Fixes: 44a6dface13b ("doc: describe how to add new components") Signed-off-by: Rami Rosen --- doc/guides/contributing/coding_style.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/guides/contributing/coding_style.rst b/doc/guides/contributing/coding_style.rst index d96698a73..656563dde 100644 --- a/doc/guides/contributing/coding_style.rst +++ b/doc/guides/contributing/coding_style.rst @@ -825,10 +825,10 @@ format. .. code-block:: python sources = files('file1.c', ...) - headers = files('file1.c', ...) + headers = files('file1.h', ...) -The will build based on a number of conventions and assumptions within the DPDK +This will build based on a number of conventions and assumptions within the DPDK itself, for example, that the library name is the same as the directory name in which the files are stored. -- 2.19.2