From: Jon Loeliger Date: Fri, 25 Sep 2020 14:22:43 +0000 (-0500) Subject: docs: fix typo in bihash clib_bihash_search() documentation X-Git-Tag: v21.06-rc0~465 X-Git-Url: https://gerrit.fd.io/r/gitweb?p=vpp.git;a=commitdiff_plain;h=277d402bee6f4ad0ffe185515de44e6457a57a9e docs: fix typo in bihash clib_bihash_search() documentation Type: docs Change-Id: Ic8c628141f8a24b857a654e2ea9129f5f97807b6 Signed-off-by: Jon Loeliger --- diff --git a/docs/gettingstarted/developers/bihash.md b/docs/gettingstarted/developers/bihash.md index bc4dc1b1b34..3754d5f9fa3 100644 --- a/docs/gettingstarted/developers/bihash.md +++ b/docs/gettingstarted/developers/bihash.md @@ -201,9 +201,9 @@ The simplest possible (key, value) search goes like so: search_kv.key = key_to_add_or_delete; if (clib_bihash_search_8_8 (h, &search_kv, &return_kv) < 0) - key_not_found() - else key_not_found(); + else + key_found(); ``` Note that it's perfectly fine to collect the lookup result