DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] doc: two typos in documentation
@ 2021-08-04 18:26 Henry Nadeau
  2021-08-05  7:52 ` Thomas Monjalon
  2021-10-28 13:10 ` Walsh, Conor
  0 siblings, 2 replies; 3+ messages in thread
From: Henry Nadeau @ 2021-08-04 18:26 UTC (permalink / raw)
  To: dev; +Cc: thomas

Corrected two typos that got added in the most recent merge.


Signed-off-by: Henry Nadeau <hnadeau@iol.unh.edu>
---
 doc/guides/sample_app_ug/ioat.rst            | 2 +-
 doc/guides/sample_app_ug/vmdq_forwarding.rst | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/doc/guides/sample_app_ug/ioat.rst b/doc/guides/sample_app_ug/ioat.rst
index ee0a627b06..b364be3b5d 100644
--- a/doc/guides/sample_app_ug/ioat.rst
+++ b/doc/guides/sample_app_ug/ioat.rst
@@ -236,7 +236,7 @@ function in order to start processing for each lcore:
 .. literalinclude:: ../../../examples/ioat/ioatfwd.c
     :language: c
     :start-after: Start processing for each lcore. 8<
-    :end-before: >8 End of starting to processfor each lcore.
+    :end-before: >8 End of starting to process for each lcore.
     :dedent: 0
 
 The function launches Rx/Tx processing functions on configured lcores
diff --git a/doc/guides/sample_app_ug/vmdq_forwarding.rst b/doc/guides/sample_app_ug/vmdq_forwarding.rst
index ae1b5660df..ed28525a15 100644
--- a/doc/guides/sample_app_ug/vmdq_forwarding.rst
+++ b/doc/guides/sample_app_ug/vmdq_forwarding.rst
@@ -103,7 +103,7 @@ the MAC of VMDq pool 2 on port 1 is 52:54:00:12:01:02.
 
 .. literalinclude:: ../../../examples/vmdq/main.c
     :language: c
-    :start-after: Building correct configruration for vdmq. 8<
+    :start-after: Building correct configuration for vdmq. 8<
     :end-before: >8 End of get_eth_conf.
 
 Once the network port has been initialized using the correct VMDq values,
-- 
2.25.1

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [dpdk-dev] [PATCH] doc: two typos in documentation
  2021-08-04 18:26 [dpdk-dev] [PATCH] doc: two typos in documentation Henry Nadeau
@ 2021-08-05  7:52 ` Thomas Monjalon
  2021-10-28 13:10 ` Walsh, Conor
  1 sibling, 0 replies; 3+ messages in thread
From: Thomas Monjalon @ 2021-08-05  7:52 UTC (permalink / raw)
  To: Henry Nadeau; +Cc: dev

04/08/2021 20:26, Henry Nadeau:
> -    :start-after: Building correct configruration for vdmq. 8<
> +    :start-after: Building correct configuration for vdmq. 8<

While at it, "vmdq" should be "VMDq" I think (to be checked).





^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [dpdk-dev] [PATCH] doc: two typos in documentation
  2021-08-04 18:26 [dpdk-dev] [PATCH] doc: two typos in documentation Henry Nadeau
  2021-08-05  7:52 ` Thomas Monjalon
@ 2021-10-28 13:10 ` Walsh, Conor
  1 sibling, 0 replies; 3+ messages in thread
From: Walsh, Conor @ 2021-10-28 13:10 UTC (permalink / raw)
  To: Henry Nadeau, dev; +Cc: thomas

Hi Henry,

When correcting these tags the corresponding tags within the code must also be updated to match
or it will break the literalinclude link and cause the warnings shown below.

doc/guides/sample_app_ug/dma.rst:240: WARNING: end-before pattern not found: >8 End of starting to process for each lcore.
doc/guides/sample_app_ug/vmdq_forwarding.rst:104: WARNING: start-after pattern not found: Building correct configuration for vdmq. 8<

Thanks,
Conor.

> From: dev <dev-bounces@dpdk.org> On Behalf Of Henry Nadeau
> Sent: Wednesday 4 August 2021 19:27
> To: dev@dpdk.org
> Cc: thomas@monjalon.net
> Subject: [dpdk-dev] [PATCH] doc: two typos in documentation
> 
> Corrected two typos that got added in the most recent merge.
> 
> 
> Signed-off-by: Henry Nadeau <hnadeau@iol.unh.edu>
> ---
>  doc/guides/sample_app_ug/ioat.rst            | 2 +-
>  doc/guides/sample_app_ug/vmdq_forwarding.rst | 2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/doc/guides/sample_app_ug/ioat.rst
> b/doc/guides/sample_app_ug/ioat.rst
> index ee0a627b06..b364be3b5d 100644
> --- a/doc/guides/sample_app_ug/ioat.rst
> +++ b/doc/guides/sample_app_ug/ioat.rst
> @@ -236,7 +236,7 @@ function in order to start processing for each lcore:
>  .. literalinclude:: ../../../examples/ioat/ioatfwd.c
>      :language: c
>      :start-after: Start processing for each lcore. 8<
> -    :end-before: >8 End of starting to processfor each lcore.
> +    :end-before: >8 End of starting to process for each lcore.

This one is within ../../../examples/ioat/ioatfwd.c now ../../../examples/dma/dmafwd.c

>      :dedent: 0
> 
>  The function launches Rx/Tx processing functions on configured lcores
> diff --git a/doc/guides/sample_app_ug/vmdq_forwarding.rst
> b/doc/guides/sample_app_ug/vmdq_forwarding.rst
> index ae1b5660df..ed28525a15 100644
> --- a/doc/guides/sample_app_ug/vmdq_forwarding.rst
> +++ b/doc/guides/sample_app_ug/vmdq_forwarding.rst
> @@ -103,7 +103,7 @@ the MAC of VMDq pool 2 on port 1 is
> 52:54:00:12:01:02.
> 
>  .. literalinclude:: ../../../examples/vmdq/main.c
>      :language: c
> -    :start-after: Building correct configruration for vdmq. 8<
> +    :start-after: Building correct configuration for vdmq. 8<

And this one is within ../../../examples/vmdq/main.c

>      :end-before: >8 End of get_eth_conf.
> 
>  Once the network port has been initialized using the correct VMDq values,
> --
> 2.25.1

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-10-28 13:11 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-04 18:26 [dpdk-dev] [PATCH] doc: two typos in documentation Henry Nadeau
2021-08-05  7:52 ` Thomas Monjalon
2021-10-28 13:10 ` Walsh, Conor

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).