doc: fix two typos in contributing guide

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: 44a6dface1 ("doc: describe how to add new components")
Cc: stable@dpdk.org

Signed-off-by: Rami Rosen <ramirose@gmail.com>
Acked-by: Marko Kovacevic <marko.kovacevic@intel.com>
This commit is contained in:
Rami Rosen 2019-03-15 11:19:00 +02:00 committed by Thomas Monjalon
parent 047b663a59
commit eeafaf40c9

View File

@ -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.