From ae19d71c80804bb5e7fd94df308268b132497294 Mon Sep 17 00:00:00 2001 From: Thomas Monjalon Date: Tue, 16 Jun 2015 12:14:48 +0200 Subject: [PATCH] hash: fix typo in jhash comments Signed-off-by: Thomas Monjalon --- lib/librte_hash/rte_jhash.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/librte_hash/rte_jhash.h b/lib/librte_hash/rte_jhash.h index 0bc443a586..e230449a93 100644 --- a/lib/librte_hash/rte_jhash.h +++ b/lib/librte_hash/rte_jhash.h @@ -361,11 +361,11 @@ __rte_jhash_3words(uint32_t a, uint32_t b, uint32_t c, uint32_t initval) * 3 words. * * @param a - * First word to calcuate hash of. + * First word to calculate hash of. * @param b - * Second word to calcuate hash of. + * Second word to calculate hash of. * @param c - * Third word to calcuate hash of. + * Third word to calculate hash of. * @param initval * Initialising value of hash. * @return @@ -382,9 +382,9 @@ rte_jhash_3words(uint32_t a, uint32_t b, uint32_t c, uint32_t initval) * 2 words. * * @param a - * First word to calcuate hash of. + * First word to calculate hash of. * @param b - * Second word to calcuate hash of. + * Second word to calculate hash of. * @param initval * Initialising value of hash. * @return @@ -401,7 +401,7 @@ rte_jhash_2words(uint32_t a, uint32_t b, uint32_t initval) * 1 word. * * @param a - * Word to calcuate hash of. + * Word to calculate hash of. * @param initval * Initialising value of hash. * @return -- 2.20.1