From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id 0BBD6530F for ; Tue, 29 Mar 2016 19:38:49 +0200 (CEST) Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by fmsmga101.fm.intel.com with ESMTP; 29 Mar 2016 10:38:49 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.24,412,1455004800"; d="scan'208";a="75353231" Received: from sie-lab-214-036.ir.intel.com (HELO sie-lab-214-36.ir.intel.com) ([10.237.214.36]) by fmsmga004.fm.intel.com with ESMTP; 29 Mar 2016 10:38:48 -0700 From: Pablo de Lara To: dev@dpdk.org Cc: bruce.richardson@intel.com, Pablo de Lara Date: Tue, 29 Mar 2016 18:38:57 +0100 Message-Id: <1459273137-18158-1-git-send-email-pablo.de.lara.guarch@intel.com> X-Mailer: git-send-email 2.5.5 In-Reply-To: <1458829666-17285-1-git-send-email-pablo.de.lara.guarch@intel.com> References: <1458829666-17285-1-git-send-email-pablo.de.lara.guarch@intel.com> Subject: [dpdk-dev] [PATCH v2] hash: fix typo in Doxygen comment X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Mar 2016 17:38:50 -0000 rte_hash_set_cmp_func() had an incorrect Doxygen comment for one of its parameters. Fixes: 95da2f8e9c61 ("hash: customize compare function") Signed-off-by: Pablo de Lara --- Changes in v2: - Reworded Doxygen comment lib/librte_hash/rte_hash.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/librte_hash/rte_hash.h b/lib/librte_hash/rte_hash.h index 85fc416..ae00b65 100644 --- a/lib/librte_hash/rte_hash.h +++ b/lib/librte_hash/rte_hash.h @@ -114,7 +114,7 @@ rte_hash_create(const struct rte_hash_parameters *params); * in multi-process mode. * * @param h - * Hash table to reset + * Hash table for which the function is to be changed * @param func * New compare function */ -- 2.5.5