From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id C401B532C for ; Tue, 29 Mar 2016 18:03:52 +0200 (CEST) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga104.fm.intel.com with ESMTP; 29 Mar 2016 09:03:09 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.24,411,1455004800"; d="scan'208";a="921108328" Received: from bricha3-mobl3.ger.corp.intel.com ([10.237.221.48]) by orsmga001.jf.intel.com with SMTP; 29 Mar 2016 09:03:07 -0700 Received: by (sSMTP sendmail emulation); Tue, 29 Mar 2016 17:03:05 +0025 Date: Tue, 29 Mar 2016 17:03:05 +0100 From: Bruce Richardson To: Pablo de Lara Cc: dev@dpdk.org Message-ID: <20160329160304.GA15912@bricha3-MOBL3> References: <1458829666-17285-1-git-send-email-pablo.de.lara.guarch@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1458829666-17285-1-git-send-email-pablo.de.lara.guarch@intel.com> Organization: Intel Shannon Ltd. User-Agent: Mutt/1.5.23 (2014-03-12) Subject: Re: [dpdk-dev] [PATCH] 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 16:03:53 -0000 On Thu, Mar 24, 2016 at 02:27:46PM +0000, Pablo de Lara wrote: > 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 > --- > 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..add3414 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 to change the function Good idea to change this. However, to read correctly, I think it might need to be adjusted slightly. E.g. * Hash table for which the function is to be changed * Hash table to update Regards, /Bruce > * @param func > * New compare function > */ > -- > 2.5.5 >