From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 871C9A0487 for ; Fri, 5 Jul 2019 11:18:57 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id E8F5E1BDF3; Fri, 5 Jul 2019 11:18:54 +0200 (CEST) Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by dpdk.org (Postfix) with ESMTP id 77BB81BDED; Fri, 5 Jul 2019 11:18:53 +0200 (CEST) Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id C472130C3183; Fri, 5 Jul 2019 09:18:52 +0000 (UTC) Received: from dmarchan.remote.csb (ovpn-204-190.brq.redhat.com [10.40.204.190]) by smtp.corp.redhat.com (Postfix) with ESMTP id 6440596AAF; Fri, 5 Jul 2019 09:18:49 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: stable@dpdk.org, Anatoly Burakov Date: Fri, 5 Jul 2019 11:18:42 +0200 Message-Id: <1562318322-30363-1-git-send-email-david.marchand@redhat.com> X-Scanned-By: MIMEDefang 2.79 on 10.5.11.14 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.40]); Fri, 05 Jul 2019 09:18:52 +0000 (UTC) Subject: [dpdk-dev] [PATCH] mem: fix typo in API description X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Fixes: 552afc420a67 ("mem: add contig walk function") Cc: stable@dpdk.org Signed-off-by: David Marchand --- lib/librte_eal/common/include/rte_memory.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/librte_eal/common/include/rte_memory.h b/lib/librte_eal/common/include/rte_memory.h index 44cbe6f..870288a 100644 --- a/lib/librte_eal/common/include/rte_memory.h +++ b/lib/librte_eal/common/include/rte_memory.h @@ -191,7 +191,7 @@ typedef int (*rte_memseg_walk_t)(const struct rte_memseg_list *msl, /** * Memseg contig walk function prototype. This will trigger a callback on every - * VA-contiguous are starting at memseg ``ms``, so total valid VA space at each + * VA-contiguous area starting at memseg ``ms``, so total valid VA space at each * callback call will be [``ms->addr``, ``ms->addr + len``). * * Returning 0 will continue walk -- 1.8.3.1