From patchwork Thu May 4 04:31:35 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ashwin Sekhar T K X-Patchwork-Id: 126678 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 431C642A57; Thu, 4 May 2023 06:31:46 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id DFFE04021F; Thu, 4 May 2023 06:31:45 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0a-0016f401.pphosted.com [67.231.148.174]) by mails.dpdk.org (Postfix) with ESMTP id 14970400EF for ; Thu, 4 May 2023 06:31:44 +0200 (CEST) Received: from pps.filterd (m0045849.ppops.net [127.0.0.1]) by mx0a-0016f401.pphosted.com (8.17.1.19/8.17.1.19) with ESMTP id 343MkNGI012150 for ; Wed, 3 May 2023 21:31:44 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h=from : to : cc : subject : date : message-id : mime-version : content-transfer-encoding : content-type; s=pfpt0220; bh=/TCwSwJdTz+bTcVR8RcxkyClGhBURXkbTBxXjizR5VM=; b=NA8YnjaYZyz7kFC4h/ciKeFgRN/xstVUXme4XEoIdgPOzsuk/SK7sdp3zq4odUFJQc7J 6dUGnEt3sL71lZ4DqCalH4PIhAXbiJjTrXYFBNRqjLPOCUNdrl+t0KDco2pE+6IVXSY9 A2duVO/vUkZJxF4D5r+w9fb5e3p/TJYmDxAqvHq4qVgOyxkpfoLxQaC9/fUTI22aoefs 97hDUy3ZH7go7phxzLb9+6zpLDxBDlBvDkegKigtIjKWQFRnsw8RXi1D6HRJaBMe0IuT vmpUA/4dVMSnveBV1NcL6Ln4Iz/lrshr8bvx2VqBmaRlV4nEHe0tZ0IlbAO10CDl6mPt vA== Received: from dc5-exch02.marvell.com ([199.233.59.182]) by mx0a-0016f401.pphosted.com (PPS) with ESMTPS id 3qc0pq8xrj-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT) for ; Wed, 03 May 2023 21:31:43 -0700 Received: from DC5-EXCH02.marvell.com (10.69.176.39) by DC5-EXCH02.marvell.com (10.69.176.39) with Microsoft SMTP Server (TLS) id 15.0.1497.48; Wed, 3 May 2023 21:31:42 -0700 Received: from maili.marvell.com (10.69.176.80) by DC5-EXCH02.marvell.com (10.69.176.39) with Microsoft SMTP Server id 15.0.1497.48 via Frontend Transport; Wed, 3 May 2023 21:31:42 -0700 Received: from localhost.localdomain (unknown [10.28.36.142]) by maili.marvell.com (Postfix) with ESMTP id 08AC43F7064; Wed, 3 May 2023 21:31:38 -0700 (PDT) From: Ashwin Sekhar T K To: , Jerin Jacob , Kiran Kumar K , Nithin Dabilpuram CC: , , , , , , , Subject: [PATCH] doc: fix typo in graph lib doc Date: Thu, 4 May 2023 10:01:35 +0530 Message-ID: <20230504043135.3977224-1-asekhar@marvell.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 X-Proofpoint-GUID: w5UQMbZ-MrxtAqadZ_t3jANP_6qZ99QC X-Proofpoint-ORIG-GUID: w5UQMbZ-MrxtAqadZ_t3jANP_6qZ99QC X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.254,Aquarius:18.0.942,Hydra:6.0.573,FMLib:17.11.170.22 definitions=2023-05-04_02,2023-05-03_01,2023-02-09_01 X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Fix typo in graph lib doc. Fixes: 4dc6d8e63c168 ("doc: add graph library guide") Signed-off-by: Ashwin Sekhar T K Acked-by: Jerin Jacob --- doc/guides/prog_guide/graph_lib.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/guides/prog_guide/graph_lib.rst b/doc/guides/prog_guide/graph_lib.rst index 1cfdc86433..4ab0623f44 100644 --- a/doc/guides/prog_guide/graph_lib.rst +++ b/doc/guides/prog_guide/graph_lib.rst @@ -173,7 +173,7 @@ Create the graph object ~~~~~~~~~~~~~~~~~~~~~~~ Now that the nodes are linked, Its time to create a graph by including the required nodes. The application can provide a set of node patterns to -form a graph object. The ``famish()`` API used underneath for the pattern +form a graph object. The ``fnmatch()`` API used underneath for the pattern matching to include the required nodes. After the graph create any changes to nodes or graph is not allowed.