From d0d1c1ebf8864a888ce888e4e75b114d60e40ee3 Mon Sep 17 00:00:00 2001 From: Thomas Monjalon Date: Fri, 5 Nov 2021 22:10:30 +0100 Subject: [PATCH] doc: remove repeated repeated words [ upstream commit 4f823975f45218c674b15ad1e9b84255eeabe08c ] Some duplicate words were detected with a script. Fixes: fdec9301f52d ("doc: add flow classify guides") Fixes: 4dc6d8e63c16 ("doc: add graph library guide") Fixes: 30d3aa861db5 ("doc: rework VM power manager user guide") Fixes: 0d547ed03717 ("examples/ipsec-secgw: support configuration file") Fixes: e64833f2273a ("examples/l2fwd-keepalive: add sample application") Signed-off-by: Thomas Monjalon Acked-by: David Marchand --- doc/guides/prog_guide/flow_classify_lib.rst | 2 +- doc/guides/sample_app_ug/ipsec_secgw.rst | 2 +- doc/guides/sample_app_ug/keep_alive.rst | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/guides/prog_guide/flow_classify_lib.rst b/doc/guides/prog_guide/flow_classify_lib.rst index f0ed5a1a04..7dae0bc8c6 100644 --- a/doc/guides/prog_guide/flow_classify_lib.rst +++ b/doc/guides/prog_guide/flow_classify_lib.rst @@ -366,7 +366,7 @@ Packet Matching ~~~~~~~~~~~~~~~ The ``rte_flow_classifier_query`` API is used to find packets which match a -given flow Flow rule in the table. +given flow rule in the table. This API calls the flow_classify_run internal function which calls the ``table.ops.f_lookup`` API to see if any packets in a burst match any of the Flow rules in the table. diff --git a/doc/guides/sample_app_ug/ipsec_secgw.rst b/doc/guides/sample_app_ug/ipsec_secgw.rst index eb1a57a98f..6f6e168c9b 100644 --- a/doc/guides/sample_app_ug/ipsec_secgw.rst +++ b/doc/guides/sample_app_ug/ipsec_secgw.rst @@ -330,7 +330,7 @@ where each options means: * *protect *: the specified traffic is protected by SA rule with id SA_idx - * *bypass*: the specified traffic traffic is bypassed + * *bypass*: the specified traffic is bypassed * *discard*: the specified traffic is discarded ```` diff --git a/doc/guides/sample_app_ug/keep_alive.rst b/doc/guides/sample_app_ug/keep_alive.rst index 865ba69e5c..58e7985b12 100644 --- a/doc/guides/sample_app_ug/keep_alive.rst +++ b/doc/guides/sample_app_ug/keep_alive.rst @@ -78,7 +78,7 @@ options. Explanation ----------- -The following sections provide some explanation of the The +The following sections provide some explanation of the Keep-Alive/'Liveliness' conceptual scheme. As mentioned in the overview section, the initialization and run-time paths are very similar to those of the :doc:`l2_forward_real_virtual`.